mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-05 20:47:53 +00:00
6 lines
84 B
Nim
6 lines
84 B
Nim
var x: string
|
|
var y = "foo"
|
|
add(x, y)
|
|
y[0] = 'm'
|
|
doAssert y == "moo" and x == "foo"
|