lean4-htt/old_tests/tests/lean/let3.lean
2018-04-10 12:56:55 -07:00

14 lines
142 B
Text

--
constant f : nat → nat → nat → nat
#check
let a : nat := 10
in f a 10
/-
#check
let a := 10,
b := 10
in f a b 10
-/