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
|
|
« Next Oldest | Next Newest »
|
▼ ▼ ▼
Post: #4
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. ▼
▼
Post: #6
11-11-2013, 12:41 AM
Yes it does:
Print('1'); prints: 1
2 Edited: 11 Nov 2013, 12:42 a.m. ▼
Post: #8
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("----------");
|