summaryrefslogtreecommitdiff
path: root/transfer/examples/prelude.tr
blob: a7e7443a1843d834fe747c5a8716653e5c92ca8e (plain)
1
2
3
4
5
const : (A:Type) -> (B:Type) -> A -> B -> A ;
const _ _ x _ = x ;

id : (A:Type) -> A -> A ;
id A x = x ;