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 finds specific boolean comparisons and optimizes them. These optimizations can reduce binary size. This way one can write code to their liking and always get the benifit of the optimization. Typical Optimized IF boolean!=0 -> IF NOT boolean! IF boolean!=FALSE -> IF NOT boolean! IF boolean!=NULL -> IF NOT boolean! IF boolean!=TRUE -> IF boolean! Example: REM #IF* !place at the top of the listing