14 lines
142 B
Text
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
|
|
-/
|