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 stringOutput:
Hello world!
Rebol [
title: "Rosetta code: String prepend"
file: %String_prepend.r3
url: https://rosettacode.org/wiki/String_prepend
]
string: "world!"
insert string "Hello "
print stringHello world!