Option Gosub

Enables support for KeyPgGosubGoSub and KeyPgOngosubOn Gosub.

Syntax
	Option Gosub

Description
	Option Gosub enables support for KeyPgGosubGoSub and KeyPgReturnGosubReturn (from gosub).

	Because Return could mean return-from-gosub or return-from-procedure, 
	Option Gosub and KeyPgOptionnogosubOption Nogosub can be used to enable and disable KeyPgGosubGoSub 
	support.  When KeyPgGosubGoSub support is disabled, KeyPgReturnReturn is then recognized as 
	return-from-procedure.

Example
	'' Compile with the "-lang fblite" compiler switch

	#lang "fblite"

	'' turn on gosub support
	Option GoSub

	GoSub there
	backagain:
	   Print "backagain"
	   End

	there:
	   Print "there"
	   Return

Dialect Differences
	* Only available in the CompilerOptlang-lang fblite and CompilerOptlang-lang qb dialects.

Differences from QB
	* New to FreeBASIC

See also
	* KeyPgDdfboptiongosub__FB_OPTION_GOSUB__
	* KeyPgOptionnogosubOption Nogosub
	* KeyPgGosubGoSub
	* KeyPgReturnGosubReturn (From Gosub)
	* KeyPgReturnReturn (From Procedure)

