8 lines
80 B
Text
8 lines
80 B
Text
fansh> a := "abc"
|
|
abc
|
|
fansh> b := a + "def"
|
|
abcdef
|
|
fansh> a
|
|
abc
|
|
fansh> b
|
|
abcdef
|