HLABasic2: bc.hla minor correction
Status: Beta
Brought to you by:
rhydehla
In "bc.hla" the second IF statement after it gets the command args does not make sense.
----8<----
if( str.ne( extName, HLABasicSourceCodeExt_c )) then
str.cat3( filename, "." HLABasicSourceCodeExt_c, sourceName );
else
---->8----
This is more sensible:
----8<----
if( str.ne( extName, HLABasicSourceCodeExt_c )) then
str.cat( filename, sourceName );
else
---->8----
Nathan.