4 lines
116 B
Text
4 lines
116 B
Text
#lang lean4
|
|
partial def foo : Nat → Nat | n => foo n + 1
|
|
@[neverExtract]
|
|
def main : IO Unit := IO.println $ foo 0
|