Current code and functions well:
%Blue = 1
PRINT "Hello"
PRINT %Blue
END
-----------------------------------------------
I want something like the following, however,
PB for DOS 3.5 does not like it.
Error 460: You used a named constant in your
program without defining it. Define the
named constant or use a literal constant
in the statement.
GOSUB Junk:
PRINT "Hello gang"
PRINT %Blue <---- error
END
Junk:
%Blue = 1
RETURN
-----------------------------------------------
I know there is a nice way to get what I want.
Point me in the right direction.
Thanks for the advice, Jack
------------------
Comment