or?

∨

return the logical OR for the given values


Parameters

or? valueA :logical :block
    valueB :logical :block

Returns

  • :logical

Examples

copy
x: 2 y: 4 if or? x=2 y>5 [ print "yep, that's correct!"] ] ; yep, that's correct!

Related