Originally posted by Randy Weisman:
It appears that the syntax is correct in the documentation but
I get a Error 525 when I compile this code.
PB 3.5. Is the documentation in error?
Thanks Randy
$DIM None
%ISBPU=1
$Include "RESOURCE.BI"
DIM A$
A$="TEST"
Print A$
END
It appears that the syntax is correct in the documentation but
I get a Error 525 when I compile this code.
PB 3.5. Is the documentation in error?
Thanks Randy
$DIM None
%ISBPU=1
$Include "RESOURCE.BI"
DIM A$
A$="TEST"
Print A$
END
%ISBPU=1
$Include "RESOURCE.BI"
'DIM A$ '<== Error 525
Dim A as STRING '<=============================
A$="TEST" ' or A="TEST"
Print A$ ' or Print A
END
------------------
Leave a comment: