@Kha The transition has begun :) I found and fixed a few bugs, but it is going well so far.
8 lines
152 B
Text
8 lines
152 B
Text
new_frontend
|
|
|
|
partial def foo : ∀ (n : Nat), StateM Unit Unit
|
|
| n =>
|
|
if n == 0 then pure () else
|
|
match n with
|
|
| 0 => pure ()
|
|
| n+1 => foo n
|