just a question for basic programmers
do you like to seperate the name of the variable from its type?
e.g.
DIM a AS INTEGER, b AS DOUBLE, c AS STRING
in QB and various other MS BASIC derived / comparable BASIC languages
or
dim a%, b#, c$ (or whatever symbols get used to represent type)
in what i refer to as 80's line number 8 bit BASICs and various BASICS
around now (e.g. Blitzbasic (iirc), Basic4GL and others
i have a very strong preference for the former, so much so that i
prefer not to use BASIC's that depend on symbols appended to variable
names to denote type. I just think it's cleaner and more in paralell
with other language syntax. I believe others find the symbols a
handy reminder of type when reading code though.