diff options
author | tomsmeding <tom.smeding@gmail.com> | 2016-11-20 17:02:08 +0100 |
---|---|---|
committer | tomsmeding <tom.smeding@gmail.com> | 2016-11-20 18:02:13 +0100 |
commit | 834cb55baadb9dd7c3a4ad096d81259d0868eeb9 (patch) | |
tree | 70a106285db5d0dfc2d05a69c031112c265a81fd /prelude.cpp | |
parent | efe58ee75044352809cc755fdb46fcdda8a7ad02 (diff) |
Fix reducing bigtime
Diffstat (limited to 'prelude.cpp')
-rw-r--r-- | prelude.cpp | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/prelude.cpp b/prelude.cpp index eb503b0..cd51cad 100644 --- a/prelude.cpp +++ b/prelude.cpp @@ -18,6 +18,14 @@ const AST afterBootstrap=AST(R"RAW( (def 'print (. putstr repr))) )RAW"); +static AST dofunction(const AST&); + +const AST doNative=AST::makeNative(dofunction); + +static AST dofunction(const AST&){ + return doNative; +} + class PreludeInit{ public: PreludeInit(Environment &intoEnv){ @@ -46,8 +54,12 @@ public: }); }); - intoEnv.define("do",AST::makeNative([](const AST&) -> AST { - throw logic_error("'do' stub called; this should not happen"); + intoEnv.define("do",doNative); + + intoEnv.define("unquote",AST::makeNative([](const AST &ast) -> AST { + AST res(ast); + res.quoted=false; + return res; })); intoEnv.define2("+",[](Environment&,const AST &arg1,const AST &arg2) -> AST { |