ID:150033
 
I'd like to do something like var1=var2="moo".. Not too big, but I think it'd be a nice space-and-time saver.

--Tarmas.
Tarmas wrote:
I'd like to do something like var1=var2="moo".. Not too big, but I think it'd be a nice space-and-time saver.

--Tarmas.

I agree, there have been times when I wanted to do this as well. It is a small request though, and it really wouldn't save that much time do to copy-paste techniques. It would be nice to have though.
In response to Ebonshadow
ive also wanted to do something like

del(a,b,d,e,f,g,h)

where a - h are image objects that im showing to the client.

FIREking
In response to FIREking
I too would like that del() feature. As for the = thing, it would be cool to do:

myvar1/myvar2/myvar3 = "my vars"



-Rcet
In response to FIREking
Why not write your own del to delete a bunch of things?

dellist(list(a,b,c,d,e,f,g,h))

proc/dellist(list/L)
for(var/x in L)
del x

Or, even better:

delall(a,b,c,d,,f,g,h)

proc/delall()
for(var/x in args)
del x

-AbyssDragon