1void setup()
2{
3 Serial.begin( 9600 );
4}
5
6void loop()
7{
8 // This will write to the monitor and end the line
9 Serial.println( "test text" );
10
11 // This will write to the monitor but will not end the line
12 Serial.print( "test text" );
13}
14