RosettaCodeData/Task/Higher-order-functions/Inform-7/higher-order-functions-2.inf
2023-10-02 18:11:16 -07:00

7 lines
125 B
INI

(function prepend-hello s
(str "Hello, " s))
(function modify-string f s
(f s))
(modify-string prepend-hello "World!")