X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=blobdiff_plain;f=lambda_evaluator.mdwn;h=8c3e6d504dd87fc0887f740c2f6260ed022ea12f;hp=99aff2521d32ccdb527ff4799c06019fe7523a02;hb=c5d5e93f0c0aedb6c149f06870792c7d219a5081;hpb=6d92118cd57ffe6ff3314c99f61ae98d5e490a32;ds=sidebyside diff --git a/lambda_evaluator.mdwn b/lambda_evaluator.mdwn index 99aff252..8c3e6d50 100644 --- a/lambda_evaluator.mdwn +++ b/lambda_evaluator.mdwn @@ -84,9 +84,9 @@ Object.prototype.error = function (message, t) { // string = JSON.stringify(tree, ['key', 'name', 'message', 'value', 'arity', 'first', 'second', 'third', 'fourth'], 4); // string = JSON.stringify(tree.handler(), ['key', 'name', 'message', 'value', 'arity', 'first', 'second', 'tag', 'variable', 'left', 'right', 'bound', 'body' ], 4); expr = tree.handler(); - // string = expr.to_string() + "\n\n~~>\n\n"; - string = ''; - string = string + reduce(expr, false, false).to_string(); + string = expr.to_string() + "\n\n~~>\n\n"; + // string = ''; + // string = string + reduce(expr, false, false).to_string(); } catch (e) { string = JSON.stringify(e, ['name', 'message', 'from', 'to', 'key', 'value', 'arity', 'first', 'second', 'third', 'fourth'], 4);