view paper/src/modus_ponens.txt @ 78:6f699b37dc55

Add original number count
author Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
date Wed, 18 Feb 2015 12:26:17 +0900
parents 1181b4facaf9
children
line wrap: on
line source

*Main> :type fst
fst :: (a, b) -> a
*Main> :type snd
snd :: (a, b) -> b

*Main> :type \cond -> (\a -> (snd cond ((fst cond) a)))
\cond -> (\a -> (snd cond ((fst cond) a)))
  :: (t2 -> t1, t1 -> t) -> t2 -> t