4 lines
73 B
Text
4 lines
73 B
Text
|
fun apply (f, x) = f (x)
|
||
|
|
||
|
val main = apply ((\(x) => print_int (x)), 42)
|