- :nothing
unless
perform action, if given condition is false or null
Parameters
unless condition :any
action :block :bytecodeReturns
Examples
copyx: 2 unless x=1 -> print "yep, x is not 1!" ; yep, x is not 1!
unless condition :any
action :block :bytecodecopyx: 2 unless x=1 -> print "yep, x is not 1!" ; yep, x is not 1!