Serial Monitor help!

Im using serial monitor on arduino and when i type in commands it makes one continuous line instead of moving down a line. example i type and send 5 then send another five it will show 55 on the monitor instead of 5
5

why is it doing this?

Hi
To make a new line when you are done sending use
Serial.printnl("say something here");

Don

Worked thanks!

Say you wanted to display a variable or something you could do it this way.
Serial.print("Display the value of myVar: ");
Serial.println(myVar);
Don