An experimental programming language written in C++.
Important
Work in progress.
- Lexer
- Parser
- AST
- Semantic analysis
- Interpreter
- Variables
- Constants
- Binary operations
- Comparisons
- REPL
.fxfile execution- Optional statement semicolons
const foo: int = 42;
if foo >= 40 do print foo;
var bar := "bar";
print 'foo' + " " + bar;