8 lines
140 B
Text
8 lines
140 B
Text
|
|
|
|
partial def foo : ∀ (n : Nat), StateM Unit Unit
|
|
| n =>
|
|
if n == 0 then pure () else
|
|
match n with
|
|
| 0 => pure ()
|
|
| n+1 => foo n
|