annotate paper/src/AgdaModusPonens.agda @ 109:f6d00a13f923

Add ()
author atton
date Mon, 13 Feb 2017 14:11:30 +0900
parents 9d154c48a1f6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
109
atton
parents: 85
diff changeset
1 f : {A B C : Set} -> ((A -> B) × (B -> C)) -> (A -> C)
atton
parents: 85
diff changeset
2 f = \p x -> (snd p) ((fst p) x)