We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20fcaa9 commit dd30f82Copy full SHA for dd30f82
littlelisp.js
@@ -59,7 +59,7 @@
59
return special[input[0].value](input, context);
60
} else {
61
var list = input.map(function(x) { return interpret(x, context); });
62
- if (list[0] instanceof Function) { // check here for js fn (lambda or built-in)
+ if (list[0] instanceof Function) {
63
return list[0].apply(undefined, list.slice(1));
64
65
return list;
0 commit comments