7 lines
143 B
Text
7 lines
143 B
Text
|
|
^|EMal has mutable strings;
|
||
|
|
|the append method changes the value in-place.
|
||
|
|
|^
|
||
|
|
text hello = "Hello, "
|
||
|
|
hello.append("world!")
|
||
|
|
writeLine(hello)
|