Date : Fri, 08 Apr 2005 10:22:42 +0100
From : Jon Ripley <jon@...>
Subject: Re: Print,
Tom Drage wrote:
> Well, I have written a little times tables program, but the output is most
> strange!
>
> What I want to be written is written but the formatting is all over.
>
> What should say 3 x 4 = 12
> Looks like 3 x 4
> 12
>
> That is the print line: 60 PRINT C," x ",A," = ", C*A
>
> Probably a simple issue, but could someone tell me what is going on?
You are using ',' instead of ';' which tabulates the output according to
settings in @%. The following will work in all cases, note the ';' at
the start of the line:
60 PRINT ;C;" x ";A;" = "; C*A
HTH,
Jon Ripley
--
http://jonripley.com/