lean2/tests/lean/hott/constr_tac.hlean

45 lines
535 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.

open prod
example (a b c : Type) : a → b → c → a × b × c :=
begin
intro Ha Hb Hc,
split,
assumption,
split,
assumption
end
example (a b : Type) : a → sum a b :=
begin
intro Ha,
left,
assumption
end
example (a b : Type) : b → sum a b :=
begin
intro Ha,
right,
assumption
end
open nat
example (a : nat) : a > 0 → Σ x, x > 0 :=
begin
intro Ha,
existsi a,
apply Ha
end
example : nat :=
begin
constructor 1
end
example : nat :=
begin
constructor 2,
constructor 2,
constructor 1
end