I am writing a program and when I needed a blank line I used print(); kinda like in old basic. This clears the entire screen. How do I print 1 blank line?
Line Print
|
11-10-2013, 07:01 PM
11-10-2013, 08:55 PM
PRINT(" ");Seems to work.
11-10-2013, 08:59 PM
Print(); with no arguments clears the terminal. Print with anything in it will print a single line and the next Print statement will will do a CR (carriage return and line feed) and print on a new line. Edited: 10 Nov 2013, 9:00 p.m.
11-11-2013, 12:32 AM
That doesn't leave a blank line between though
11-11-2013, 12:33 AM
When I saw this I knew it was right, but it doesn,t work for me.
11-11-2013, 12:41 AM
Yes it does:
Print('1'); prints: 1
2 Edited: 11 Nov 2013, 12:42 a.m.
11-11-2013, 09:38 AM
Tried the (" ") a while ago and it did not work for me so I resorted to placing lines between groups of print data with: PRINT("----------");
|
« Next Oldest | Next Newest »
|