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

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