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 db5e88d commit 01b49c8Copy full SHA for 01b49c8
tinylisp.js
@@ -64,7 +64,7 @@
64
};
65
66
67
- var interpretArray = function(input, context) {
+ var interpretList = function(input, context) {
68
if (input[0].value in special) {
69
return special[input[0].value](input, context);
70
} else {
@@ -87,7 +87,7 @@
87
if (context === undefined) {
88
return interpret(input, new Context(library));
89
} else if (input instanceof Array) {
90
- return interpretArray(input, context);
+ return interpretList(input, context);
91
} else if (input.type === "identifier") {
92
return interpretIdentifier(input, context);
93
} else { // literal
0 commit comments