RosettaCodeData/Task/Logical-operations/ArkScript/logical-operations.ark

10 lines
194 B
Text
Raw Permalink Normal View History

2025-08-11 18:05:26 -07:00
(let logic (fun (a b) {
(print "a and b: " (and a b))
(print "a or b:" (or a b))
(print "not a: " (not a)) }))
(logic true true)
(logic true false)
(logic false true)
(logic false false)