9 lines
146 B
Text
9 lines
146 B
Text
import Lean
|
|
|
|
def f' (x y : Nat) :=
|
|
let s := (x, y)
|
|
let y := s.2
|
|
y + s.2
|
|
|
|
set_option trace.Compiler true
|
|
#eval Lean.Compiler.compile #[``f']
|