7 lines
82 B
Text
7 lines
82 B
Text
|
|
|
|
|
|
apply : (Int -> Int) -> Int -> Int
|
|
apply f y = f y
|
|
|
|
main = apply (\y. y + y) 5
|