RosettaCodeData/Task/String-concatenation/Fantom/string-concatenation-1.fantom

9 lines
80 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
fansh> a := "abc"
abc
fansh> b := a + "def"
abcdef
fansh> a
abc
fansh> b
abcdef