It would be nice if variables in TYPE's could be seperated by a comma. Eg :
TYPE t
a%,b%,c%
ENDTYPE
At the moment, this generates a syntax error.
GLBasic separates commands with semicolon
TYPE t
a%; b%; c%
ENDTYPE
Good point - will have to use that instead!