GLBasic User Manual

Main sections

ENDINLINE

ENDINLINE



This command terminates an INLINE code block. GLBasic stops being an easy programming language with the use of the INLINE command!

// INLINE

LOCAL C
C = 41
INLINE
C++;
ENDINLINE

PRINT "C="+C, 100, 100


Output:
C=42

See also...