Hi, I'm wondering how this works.
It allows me to add an int to a list but doesn't seem to cycle through them with EachIn. Why is countlist=1 but it doesn't print "hello"?
It allows me to add an int to a list but doesn't seem to cycle through them with EachIn. Why is countlist=1 but it doesn't print "hello"?
Local list:TList=CreateList() Local x:Int=55 Local o:Object ListAddLast list,x Print CountList(list) For o=EachIn list Print "hello" Next