RosettaCodeData/Task/Logical-operations/MAXScript/logical-operations.max
2023-07-01 13:44:08 -04:00

6 lines
132 B
Text

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)
)