This commit is contained in:
Adrien Vannson 2022-05-10 12:10:33 +02:00
parent 46fa8ce223
commit 4ca1a65529
No known key found for this signature in database
GPG Key ID: FE2E66FD978C1A55
6 changed files with 16 additions and 0 deletions

5
tests/test01.8pus Normal file
View File

@ -0,0 +1,5 @@
(A -> B -> C) -> (B -> A -> C)
intro f.
intro b.
intro a.
apply f.

7
tests/test04.8pus Normal file
View File

@ -0,0 +1,7 @@
(A -> B) -> (B -> C) -> A -> C
intro f.
intro g.
intro a.
apply g.
apply f.
assumption.

1
tests/test05.8pus Normal file
View File

@ -0,0 +1 @@
((A -> A) -> B) -> B

1
tests/test06.8pus Normal file
View File

@ -0,0 +1 @@
(A -> B -> C) -> (A -> B) -> A -> C

1
tests/test07.8pus Normal file
View File

@ -0,0 +1 @@
A -> ~(~A)

1
tests/test08.8pus Normal file
View File

@ -0,0 +1 @@
(A -> B) -> ~B -> ~A