Skip to content

Commit dd30f82

Browse files
committed
Remove done todo.
1 parent 20fcaa9 commit dd30f82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

littlelisp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
return special[input[0].value](input, context);
6060
} else {
6161
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)
62+
if (list[0] instanceof Function) {
6363
return list[0].apply(undefined, list.slice(1));
6464
} else {
6565
return list;

0 commit comments

Comments
 (0)