churf/sample-programs/working/apply.crf
2023-05-06 22:49:08 +02:00

7 lines
82 B
Text

apply : (Int -> Int) -> Int -> Int
apply f y = f y
main = apply (\y. y + y) 5