diff options
author | Eduardo Julian | 2023-01-18 01:38:48 -0400 |
---|---|---|
committer | Eduardo Julian | 2023-01-18 01:38:48 -0400 |
commit | 670438b982bbe0b662b0a65958dc4f8b289d3906 (patch) | |
tree | 390ddabf9c802c1f38d4fd985b7e29677cb0ac66 /lux-ruby/source | |
parent | dfe09eb7a90dbf164bc0c78085b2d340e0928190 (diff) |
More efficient "let" and "exec" expressions.
Diffstat (limited to 'lux-ruby/source')
-rw-r--r-- | lux-ruby/source/program.lux | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lux-ruby/source/program.lux b/lux-ruby/source/program.lux index 60bf7c133..275b98791 100644 --- a/lux-ruby/source/program.lux +++ b/lux-ruby/source/program.lux @@ -30,14 +30,14 @@ ["i" int] ["[0]" i64]]] [meta - ["@" target (.only) - ["_" ruby]] [macro ["^" pattern] ["[0]" template]] ["[0]" compiler [reference [variable (.only Register)]] + ["@" target (.only) + ["_" ruby]] [language [lux [program (.only Program)] @@ -751,7 +751,7 @@ output)))))] (is (Host _.Expression _.Statement) (implementation - (def (evaluate context [_ code]) + (def (evaluate [_ code]) (run! code)) (def execute run!) |