blog-static/code/compiler/13/examples/errors/pattern_unknown_constructor...

7 lines
88 B
Plaintext
Raw Normal View History

2020-09-10 14:02:19 -07:00
defn main = {
case True of {
NotBool -> { 1 }
True -> { 2 }
}
}