6 lines
132 B
Text
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)
|
|
)
|