annotate final_main/src/AgdaModusPonens.agda @ 0:83f997abf3b5

first commit
author e155702
date Thu, 14 Feb 2019 16:51:50 +0900
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
83f997abf3b5 first commit
e155702
parents:
diff changeset
1 f : {A B C : Set} -> ((A -> B) × (B -> C)) -> (A -> C)
83f997abf3b5 first commit
e155702
parents:
diff changeset
2 f = \p x -> (snd p) ((fst p) x)