view 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
line wrap: on
line source

f : {A B C : Set} -> (A -> B) × (B -> C) -> (A -> C)
f = (\p x -> snd p ((fst p) x))