annotate paper/src/AgdaModusPonens.agda @ 104:0ab2de92120b teacher-submit

Added tag 1F-submit for changeset 0a4646310261
author atton <atton@cr.ie.u-ryukyu.ac.jp>
date Mon, 13 Feb 2017 10:33:15 +0900
parents 9d154c48a1f6
children f6d00a13f923
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
85
9d154c48a1f6 Update curry-howard isomorphism
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 f : {A B C : Set} -> (A -> B) × (B -> C) -> (A -> C)
9d154c48a1f6 Update curry-howard isomorphism
atton <atton@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 f = (\p x -> snd p ((fst p) x))