09-21-2024, 01:41 AM
Note, what you're thinking of is probably a case of not needing to use a suffix if you DIM a variable AS TYPE.
For example:
DIM x AS STRING
x$ = "Foo" <-- this is still perfectly valid.
PRINT x <-- this will still print "Foo" as x is dimmed as a string.
PRINT x! <-- this, however, is a different variable as defined by your suffix.
For example:
DIM x AS STRING
x$ = "Foo" <-- this is still perfectly valid.
PRINT x <-- this will still print "Foo" as x is dimmed as a string.
PRINT x! <-- this, however, is a different variable as defined by your suffix.