9 lines
146 B
Text
9 lines
146 B
Text
|
|
* copy a to b
|
||
|
|
b = a = "test"
|
||
|
|
output = a
|
||
|
|
output = b
|
||
|
|
* change the copy
|
||
|
|
b "t" = "T"
|
||
|
|
output = b
|
||
|
|
end
|