Topic : GFA-Basic Editor
Author : Lonny Pursell
Version : GBE.HYP v3.74 (12/31/2023)
Subject : Programming/Documentation
Nodes : 171
Index Size : 4296
HCP-Version : 3
Compiled on : Atari
@charset : atarist
@lang :
@default : Default
@help : STG Help
@options : +g -i -s +z
@width : 75
@hostname : THING
@hostname : STRNGSRV
@hostname : HIGHWIRE
@hostname : CAB
View Ref-FileThis option will generate a list of variables for each subroutine that are
considered global. All variables that are not parameters and locals are
assumed to be globals.
This helps locate typos and missing postfixes, plus you can verfiy if a
subroutine is in fact completely self contained.
It gives the option to sort the variables:
Option Order Speed Description
None No sort Fast Order they are encountered in the listing
Type Variable type Medium See TYPE() in the manual
Name Variable name Slow Sorted alphabetically a to z
Sorting by name is probably the most useful, you can spot errors like this:
index% <- the variable you meant to use
index# <- missing postfix, so it shows up as a float
inbex% <- typo in the variable name