diff options
author | Eduardo Julian | 2021-03-18 16:27:04 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-03-18 16:27:04 -0400 |
commit | 3f23fb8c846acfd7cf04481f12839469c63a1148 (patch) | |
tree | 397e585e7eafd2f5e39d3643a5289facce5c69ad /lux-php/source | |
parent | 20383a3f634aef56413c5451bbf31be5eea2932a (diff) |
Updates for Scheme compiler.
Diffstat (limited to 'lux-php/source')
-rw-r--r-- | lux-php/source/program.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lux-php/source/program.lux b/lux-php/source/program.lux index a13039760..716405587 100644 --- a/lux-php/source/program.lux +++ b/lux-php/source/program.lux @@ -483,7 +483,7 @@ (let [global (reference.artifact context) @global (_.global global)] (do try.monad - [#let [definition (_.; (_.set @global input))] + [#let [definition (_.set! @global input)] _ (run! definition) value (run! (_.return @global))] (wrap [global value definition])))) |