GLBasic forum

Feature request => IDE/Syntax => Topic started by: Schranz0r on 2013-Oct-12

Title: CONSTANT in TYPES!
Post by: Schranz0r on 2013-Oct-12
Hi Gernot,


is it possible to initialize the CONSTANTS before the TYPES?
So that we can do this:

Code (glbasic) Select
CONSTANT MaxX = 12
CONSTANT MaxY = 14
CONSTANT MaxZ = 16

TYPE Whatever
    Map[MaxX][MaxY][MaxZ]
ENDTYPE