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

7 lines
116 B
Plaintext
Raw Normal View History

2015-07-11 21:19:59 +03:00
use "std"
2016-02-20 10:12:26 +02:00
// Ternary operator
2015-07-11 21:19:59 +03:00
a = 0
b = 1
print (a ? "text1" : "text2") + "\n"
2016-02-20 10:12:26 +02:00
print (b ? "text3" : "text4") + "\n"