This repository has been archived on 2024-01-18. You can view files and clone it, but cannot push or open issues or pull requests.
compilation/flap/tests/04-Hobix_to_Fopix/11-primitive.hobix
2023-12-11 11:49:02 +01:00

7 lines
142 B
Text

fun apply (f, x) = f (x)
fun apply2 (f, x, y) = f (x, y)
val main =
apply (print_int, 42);
apply (print_int, (apply2 (`+`, 31, 2)))