If {$GOTO ON} is specified, the compiler will support Goto statements and Label declarations. By default, $GOTO OFF is assumed. This directive corresponds to the -Sg command line option.
As an example, the following code can be compiled:
{$GOTO ON} label Theend; begin If ParamCount=0 then GoTo TheEnd; Writeln ('You specified command line options'); TheEnd: end.
RemarkWhen compiling assembler code using the inline assembler readers, any labels used in the assembler code must be declared, and the {$GOTO ON} directive should be used.