blog-static/code/compiler/13/examples/errors/match_after_catchall.txt

8 lines
105 B
Plaintext
Raw Normal View History

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