7 lines
171 B
Text
7 lines
171 B
Text
|
|
s =: "hello"
|
||
|
|
print s.Usecount
|
||
|
|
t =: s \ reference copy
|
||
|
|
print s.Usecount
|
||
|
|
u =: string (s _ 'x') clip upto -2
|
||
|
|
print (quote u), u.Usecount, s.Usecount
|