3 lines
104 B
Text
3 lines
104 B
Text
partial def foo : Nat → Nat | n => foo n + 1
|
|
@[neverExtract]
|
|
def main : IO Unit := IO.println $ foo 0
|