7 lines
106 B
Text
7 lines
106 B
Text
a: true
|
|
b: false
|
|
|
|
if? a [ print "yep" ] else [ print "nope" ]
|
|
|
|
if? b -> print "nope"
|
|
else -> print "yep"
|