Own-Programming-Language-Tu.../examples/common/operators.own
2015-07-11 21:19:59 +03:00

8 lines
98 B
Plaintext

use "std"
a = 0
b = 1
print (a ? "text1" : "text2") + "\n"
print (b ? "text3" : "text4") + "\n"