Concept Flow - Serial.print() and Serial.println()
Start Program
Setup Serial
Call Serial.print()
Send data without newline
Call Serial.println()
Send data with newline
Repeat or End
The program starts, sets up serial communication, then sends data using Serial.print() without moving to a new line, and Serial.println() which sends data and moves to a new line.
