RosettaCodeData/Task/String-concatenation/Oz/string-concatenation.oz

6 lines
143 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
declare
S = "hello"
{System.showInfo S#" literal"} %% virtual strings are constructed with "#"
S1 = {Append S " literal"}
{System.showInfo S1}