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 180d097 commit 80a41fbCopy full SHA for 80a41fb
src/lambda-calculus.js
@@ -372,7 +372,7 @@ function evalLC(term) {
372
env = new Env(env).setThunk(term.name, new Tuple(lastTerm, lastEnv));
373
term = term.body;
374
} else { // Pass the function some other function.
375
- term = lastTerm(awaitArg(term, stack, env));
+ term = lastTerm(awaitArg(term, [], env));
376
}
377
} else if ( term instanceof Tuple ) {
378
// for primitives
0 commit comments