lean4-htt/tests/lean/unfold_rec4.lean
2016-06-10 18:29:41 -07:00

10 lines
189 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

exit
open nat
definition f [unfold 1] (n : ) : :=
by induction n with n fn; exact zero; exact succ (succ fn)
example (n : ) : f (succ (succ n)) = sorry :=
begin
unfold f,
end