7 lines
120 B
INI
7 lines
120 B
INI
(function prepend-hello s
|
|
"Hello, {s}")
|
|
|
|
(function modify-string f s
|
|
(f s))
|
|
|
|
(modify-string prepend-hello "World!")
|