RosettaCodeData/Task/Interactive-programming-repl-/Rebol/interactive-programming-repl-.rebol

6 lines
100 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
$ rebol -q
>> f: func [a b s] [print rejoin [a s s b]]
>> f "Rosetta" "Code" ":"
Rosetta::Code
>> q