Variables in TYPES

Previous topic - Next topic

MrTAToad

It would be nice if variables in TYPE's could be seperated by a comma.  Eg :

Code (glbasic) Select
TYPE t
  a%,b%,c%
ENDTYPE


At the moment, this generates a syntax error.

Moru

GLBasic separates commands with semicolon

Code (glbasic) Select
TYPE t
  a%; b%; c%
ENDTYPE

MrTAToad

Good point - will have to use that instead!