Files
MIRROR-LX-OriginalRepo/example/main.lx
Pasha Bibko f88c1e0455 Made the outputted .exe be run on built
Outputs the exit code of the process as that is currently the only way to output information with the language.
2025-05-04 13:53:19 +01:00

11 lines
78 B
Plaintext

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