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

5 lines
110 B
Text

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