RosettaCodeData/Task/Interactive-programming-repl-/Rebol/interactive-programming-repl-.rebol
2026-04-30 12:34:36 -04:00

5 lines
100 B
Text

$ rebol -q
>> f: func [a b s] [print rejoin [a s s b]]
>> f "Rosetta" "Code" ":"
Rosetta::Code
>> q