Add a few tests
This commit is contained in:
parent
84304e26dc
commit
b4ba9432cd
6
tests/and.8pus
Normal file
6
tests/and.8pus
Normal file
@ -0,0 +1,6 @@
|
||||
Goal A -> B -> (A /\ B).
|
||||
intros.
|
||||
split.
|
||||
exact H0.
|
||||
exact H1.
|
||||
Qed.
|
4
tests/exact.8pus
Normal file
4
tests/exact.8pus
Normal file
@ -0,0 +1,4 @@
|
||||
Goal A -> B -> A.
|
||||
intros.
|
||||
exact H0.
|
||||
Qed.
|
5
tests/or.8pus
Normal file
5
tests/or.8pus
Normal file
@ -0,0 +1,5 @@
|
||||
Goal A -> B -> (A \/ C).
|
||||
intros.
|
||||
left.
|
||||
exact H0.
|
||||
Qed.
|
Loading…
Reference in New Issue
Block a user