RosettaCodeData/Task/Logical-operations/MAXScript/logical-operations.max

7 lines
132 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
fn printLogic a b =
(
format "a and b is %\n" (a and b)
format "a or b is %\n" (a or b)
format "not a is %\n" (not a)
)