else

perform action, if last condition was not true


Parameters

else otherwise :block :bytecode

Returns

  • :nothing

Examples

copy
x: 2 z: 3 if? x>z [ print "x was greater than z" ] else [ print "nope, x was not greater than z" ]

Related