view src/apply_function.agda @ 29:ed97e5de348d

Add todo list
author Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
date Thu, 12 Feb 2015 11:28:50 +0900
parents a0d91fbf4876
children
line wrap: on
line source

module apply_function where

postulate A : Set 
postulate f : {B : Set} -> A -> B

->E : {B : Set} -> A -> (A -> B) -> B
->E a f = f a