Problem outputing to RS-232

Sorry, mistype on entering the code (didn't copy and paste as I am working across two computers). I did initialize Serial1. The correct code is:

void setup() {
   Serial.begin(9600);
   Serial1.begin(9600);
}

Carl