lean4-htt/tests/lean/run/fun.lean
2017-03-09 18:41:19 -08:00

21 lines
320 B
Text

open function bool
constant f : num → bool
constant g : num → num
#check f ∘ g ∘ g
#check (id : num → num)
constant h : num → bool → num
#check swap h
#check swap h ff num.zero
#check (swap h ff num.zero : num)
constant f1 : num → num → bool
constant f2 : bool → num
#check (f1 on f2) ff tt