Kind/book/Bool.or.kind2
2024-03-13 22:32:30 -03:00

8 lines
104 B
Plaintext

use Bool.{true,false}
Bool.or (a: Bool) (b: Bool) : Bool =
match a {
true: true
false: b
}