mirror of
https://github.com/PashaBibko/LX.git
synced 2026-04-03 17:39:02 +00:00
Also improved general ease of use with debugging use __debugbreak when an error is thrown. NOTE: Parser errors currently crash the program
13 lines
86 B
Plaintext
13 lines
86 B
Plaintext
func main()
|
|
{
|
|
int a
|
|
a = 65465
|
|
|
|
/
|
|
|
|
int b
|
|
b = 6
|
|
|
|
return a + b
|
|
}
|