mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-02 19:22:40 +00:00
12 lines
166 B
Nim
12 lines
166 B
Nim
static:
|
|
var
|
|
a: ref string
|
|
b: ref string
|
|
new a
|
|
|
|
a[] = "Hello world"
|
|
b = a
|
|
|
|
b[5] = 'c'
|
|
doAssert a[] == "Hellocworld"
|
|
doAssert b[] == "Hellocworld" |