PROJECT FROZEN. CURRENTLY REWORKING WHOLE LANGUAGE!
- Interpretate code (Will removed with isolated VM/Bytecode interpretation).
- Bytecode (Compile, Interpretate) [WIP]
- Stack implementation (push, pop)
- Conditional IFs ([bool_from_stack] if [code] else [code] end).
- WHILE loops (while [expression] do [code] end)
- Bytearray Memory (mbwrite, mbread, mbshowc, mbptr etc...)
- Characters, Strings.
- Basic I/O.
35 // Push 35 in the stack.
5 // Push 5 in the stack.
+ // Pop both 35 and 5, and push their sum in the stack.
show // Pop value from the stack and show it on the screen.
"Hello, World!" mshowc // Show string "Hello, World!" on the screen.