Why does a program result in Syntax Error?

Is the program that of Microsoft BASIC?
Full BASIC recognizes "!" as the beginning of a comment.
Therefore any program containing a variable or numeric that ends with "!" may cause a curious error.
While you can turn the syntax option to Microsoft BASIC, no numerics that end with "!" are not allowed.
If the program contanis a numeric such as .1! or .1#, remove "!" or "#".


Back