Create List ?

BlitzMax Forums/BlitzMax Beginners Area/Create List ?

Hotshot2005(Posted 2012) [#1]
I got Game Programming for Absolute Begiinner with BlitzMax on IPAD

I copy the code on blitzMax

somethings isnt right


listTList=CreateList()

list.AddLast("New Game")
list.AddList("Option")
list.AddList("Control")
list.AddList("Help")
list.AddList("Exit")

For b:String=EachIn List
    Print b
Next
WaitKey



Hotshot2005(Posted 2012) [#2]
arghhh I found correction to this is that I have missed out the :

list:TList=CreateList()