•  Back 
  •  Main 
  •  Index 
  •  Tree View 
  •  Cross references 
  •  STG Help 
  •  Show info about hypertext 
  •  View a new file 
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 allows automatic or manual optimization of function calls using
the slower variant of VOID.

VOID blah(...)  !slower and generates more code
~blah(...)      !faster and generates less code

VOID causes a floating-point conversion before discarding the result.
The short form '~' (tilde) simply discards the result.

The auto method will scan the entire source and replace VOID with '~'.
The manual method will place the cursor at the first VOID it encounters.