Add a few tests

This commit is contained in:
augustin64 2024-05-14 15:23:58 +02:00
parent 84304e26dc
commit b4ba9432cd
3 changed files with 15 additions and 0 deletions

6
tests/and.8pus Normal file
View File

@ -0,0 +1,6 @@
Goal A -> B -> (A /\ B).
intros.
split.
exact H0.
exact H1.
Qed.

4
tests/exact.8pus Normal file
View File

@ -0,0 +1,4 @@
Goal A -> B -> A.
intros.
exact H0.
Qed.

5
tests/or.8pus Normal file
View File

@ -0,0 +1,5 @@
Goal A -> B -> (A \/ C).
intros.
left.
exact H0.
Qed.