ArrayBounds

BlitzMax Forums/BlitzMax Beginners Area/ArrayBounds

Ant(Posted 2005) [#1]
Hi quick array question. If I declare array[3], does that mean i have created 3 elements:

array[0]
array[1]
array[2]
..as it appears to work in other languages or have a I missed something
Thanks


Dreamora(Posted 2005) [#2]
Yes this means you created 3 elements (not like in old blitz where it created from array[0] to array[3] which meant 4 elements)


Ant(Posted 2005) [#3]
Ok thanks