Advantage of Arduino

Dear cyclegadget,

Thanks for reply

I downloaded Simulator for Arduino v0.98 and installed. Then I downloaded Arduino IDE and wrote the following program

void setup (){
pinMode (13, OUTPUT);
}
void loop(){
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
}

Please advice how may I load the compiled file (HEX) to simulator. where the HEX file is generated

Please advice
Thanks in advance