8 lines
103 B
Text
8 lines
103 B
Text
|
|
applyId : (forall a. a -> a) -> b -> b
|
|
applyId f x = f x
|
|
|
|
id : a -> a
|
|
id x = x
|
|
|
|
main = applyId id 145
|