Size of a string array

BlitzMax Forums/BlitzMax Beginners Area/Size of a string array

AD(Posted 2007) [#1]
How do you find/return the size of a string array?

ie:
local menulist$[] = ["Play Game", "Hi-Scores", "Quit"]


Thank you!


Brucey(Posted 2007) [#2]
Print menulist.length

:-)


AD(Posted 2007) [#3]
That worked fine! Thank you!