Sending a Hello message using arduino

PaulRB:
Liar! Look at your post #3, it's exactly the same as before.

I'm very sorry if I offended you, I was trying to send this code instead:

//Below is the TX Code:

int LEDPin = 13;
int LEDOnTime = 400;
int LEDOffTime = 500;
int nummsgBlinks = 5;
String Message = "Hello world";

void setup() {
Serial.begin(9600);
String wm1 = "Welcome to ";
String wm2 = "My Program";
String wm3;
wm3=wm1+wm2;
Serial.println(wm3);
pinMode(LEDPin, OUTPUT);
}

void loop() {
for (int i=1; i<=nummsgBlinks; i=i+1){
 Serial.print(i);
 Serial.print(": ");
Serial.println(Message);
digitalWrite(LEDPin,HIGH);
 delay(LEDOnTime);
 digitalWrite(LEDPin,LOW);
 delay(LEDOffTime);
}
Serial.println(" ");
}

Can you kindly take a look at it?

Albert