Idris2/tests/idris2/perror012/CaseParseError.idr

5 lines
77 B
Idris
Raw Normal View History

plus : Nat -> Nat -> Nat
plus m n = case m of
Z => n
S m -> S (plus m n)