For lists do you need to make it like this
var/list/visit=list()
or can it be
var/visit=visit()
ID:266727
![]() Jun 5 2002, 10:39 am
|
|
var/visit[5] That would produce a different result than the others, though. What you'd be looking for would be var/visit[0] to mimic the same effect of creating an empty list. (visit[5] would be filled with five null entries.) |
visit() isn't a proc, so that won't work. They'd both have to be =list(). These syntaxes will all work:
Lummox JR