Files
MIRROR-LX-OriginalRepo/example/main.lx
Pasha Bibko 4e78a9f6ae Made Lexer errors fully hidden in global scope
Also improved general ease of use with debugging use __debugbreak when an error is thrown.

NOTE: Parser errors currently crash the program
2025-05-07 16:31:44 +01:00

13 lines
86 B
Plaintext

func main()
{
int a
a = 65465
/
int b
b = 6
return a + b
}