Interesting!
Using Arduino version 1.0.5-r2, the following program compiles, uploads and prints nothing between the ><. Anyone care to comment?
void setup(){
byte c=48;
Serial.begin(9600);
Serial.print("test>");
Serial.print("Temp"+c);
Serial.println("<done");
}
void loop(){}