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