We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21ea90d commit 9edc2d0Copy full SHA for 9edc2d0
ports-js/scheme.js
@@ -360,8 +360,7 @@ export function evalScheme(list) {
360
361
addGlobals(globalEnv);
362
363
-var stdlibConent = readFileSync('ports/stdlib.scm', 'utf8')
364
-evalSchemeString(stdlibConent);
+evalSchemeString(readFileSync('ports/stdlib.scm', 'utf8'));
365
366
function main() {
367
console.log(evalSchemeString("(+ (* 2 3) 2)")); // Should output 3
0 commit comments