diff options
Diffstat (limited to 'js')
| -rw-r--r-- | js/step0_repl.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/js/step0_repl.js b/js/step0_repl.js index f9fa60e..126a436 100644 --- a/js/step0_repl.js +++ b/js/step0_repl.js @@ -1,5 +1,6 @@ if (typeof module !== 'undefined') { var readline = require('./node_readline'); + var printer = require('./printer'); } // read @@ -9,7 +10,7 @@ function READ(str) { // eval function EVAL(ast, env) { - return eval(ast); + return ast; } // print |
