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