Ajout de la β-réduction du λ-terme final.

This commit is contained in:
2022-05-10 15:24:42 +02:00
parent 98a9e6964f
commit 241a44528e
3 changed files with 16 additions and 4 deletions
+10
View File
@@ -0,0 +1,10 @@
(A -> B -> C) -> (B -> A -> C)
intro f.
intro b.
intro a.
cut (B -> C).
intro bc.
apply bc.
assumption.
apply f.
assumption.