Serial Port Monitor

Serial.println(" Hi there "); // will print Hi there on a line by itself on the serial monitor
Serial.print(" Hi there "); // will print Hi there on a line but the next serial print will follow it on the same
//line on the serial monitor.

Lefty