Own-Programming-Language-Tu.../examples/common/operators.own

8 lines
98 B
Plaintext
Raw Normal View History

2015-07-11 21:19:59 +03:00
use "std"
a = 0
b = 1
print (a ? "text1" : "text2") + "\n"
print (b ? "text3" : "text4") + "\n"