ID:2043178
 
im just wondering if it were to take the code below and space it so its on the next line
TestList=list("test1","test2")


like this
TestList=list("test1",
"test2")


will it not work or be buggy in any way? im just wondering because I have a longggg list that goes all the way across and would like to space it for each line so its easier to read and addon. The compiler gives no errors but im not sure



You can do that. Just remember the comma after each list entry.
hmm weird before it was fine now its giving a error is there any way to make lists that are really long easier to read? instead of having to side scroll for minutes
var/list/my_list = list("Item1",\
"Item2",\
"Item3")
// compiles fine:
var somelist[] = list(
"list item 1",
"list item 2",
"list item 3",
)