question about Type global initializers...
BlitzMax Forums/BlitzMax Beginners Area/question about Type global initializers... So am I supposed to assume that the line,
global array[5]
gets internally converted to,
global array[]=new int[5]
global array[5]
gets internally converted to,
global array[]=new int[5]
So am I supposed to assume that the line,
global array[5]
gets internally converted to,
global array[]=new int[5]
Yep.
The 'const only' Global initializer stuff will be fixed very soon though!
cool thanks!