ES6 Support Groundwork + Fixes #26

Merged
TopchetoEU merged 49 commits from ES6 into master 2024-09-05 14:26:07 +00:00
Showing only changes of commit 6f8efe74c4 - Show all commits

View File

@ -337,8 +337,9 @@ public class SimpleRepl {
if (el instanceof StringValue) System.out.print(((StringValue)el).value);
else System.out.print(el.toReadable(args.env));
}
System.out.println();
return null;
return Value.UNDEFINED;
}));
}
private static void initEngine() {