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