mirror of
https://github.com/PashaBibko/LX.git
synced 2026-04-04 01:49:05 +00:00
Outputs the exit code of the process as that is currently the only way to output information with the language.
11 lines
78 B
Plaintext
11 lines
78 B
Plaintext
func main()
|
|
{
|
|
int a
|
|
a = 7834
|
|
|
|
int b
|
|
b = 6
|
|
|
|
return a + b
|
|
}
|