RosettaCodeData/Task/Logical-operations/Dyalect/logical-operations.dyalect

6 lines
110 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
var a = true
var b = false
print("a and b is \(a && b)")
print("a or b is \(a || b)")
print("Not a is \(!a)")