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

6 lines
98 B
Plaintext

Bool.and (a: Bool) (b: Bool) : Bool =
match b {
Bool.true: b
Bool.false: Bool.false
}