FailLang
FailLang copied to clipboard
Language based on lox from book "Crafting Interpreters" by @munificent
Results
2
FailLang issues
Sort by
recently updated
recently updated
newest added
``` var a = 1; var a = 2; var a = 3; print a; ``` // Output: 3 // Expect: Variable with this name already declared in this scope.
In for loop the current implementation of continue does not increment the incrementors and is behaving like inside while loop.
bug
help wanted