03-18-2023, 02:39 PM
(03-18-2023, 02:11 PM)TerryRitchie Wrote: Test is a subroutine and does not require the parenthesis to surround b$() when calling it.
test b$() ' Not test (b$())
SUB test (B$())
PRINT "Hi"
END SUB
Color me learned !!!
'Call test b$()' does not work without the parenthesis, but 'test b$()' = works ?? Interesting...I have always surrounded with parenthesis since when you use the 'Call' they have to be there.