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

9 lines
80 B
Text
Raw Permalink Normal View History

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