RosettaCodeData/Task/String-append/Euphoria/string-append.euphoria

8 lines
109 B
Text
Raw Permalink Normal View History

2015-02-20 09:02:09 -05:00
sequence string = "String"
printf(1,"%s\n",{string})
string &= " is now longer\n"
printf(1,"%s",{string})