Rebol3 Code Examplex


String prepend

Rebol [
    title: "Rosetta code: String prepend"
    file:  %String_prepend.r3
    url:   https://rosettacode.org/wiki/String_prepend
]

string: "world!"
insert string "Hello "
print string

Output:

Hello world!