Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×

Comment Re:The only important question is.... (Score 1) 306

Nope. Wrong syntax. String variables required $ AFTER the variable name (which could only be one or two characters; any more characters were ignored. This made BANANA and BALL the same variable.). Integer variables had a % after them. Floating point variables were unqualified.

Also, a comma in a PRINT statement inserted a tab. A semicolon inserted nothing.

The correct syntax should be:

10 B = 9 * 9

20 PRINT "9 times 9 is ";B;". :D"

The math error did happen, though.

Yes, I did this from memory. You never forget your first programming language...

-jon

Slashdot Top Deals

"The one charm of marriage is that it makes a life of deception a neccessity." - Oscar Wilde

Working...