6 lines
78 B
Text
6 lines
78 B
Text
|
fun addk (k) = \(x) => x + k
|
||
|
|
||
|
val f = addk (41)
|
||
|
|
||
|
val main = print_int (f (1))
|