Can not upload my first blink sketch to uno

Win7 laptop & think arduino uno purchased in 2012. Uploading from deceased wife's laptop & submitting this from my iPad. Don't know if iPad will work as replacement for the laptop?

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

Error message was: an error occurred while uploading the sketch a rude done.

Did just enable verbose output per some instruction during my two day ordeal.
Thanks, Richard7-11

Richard7-11:
Did just enable verbose output

After the upload fails you will see a button on the right side of the orange bar "Copy error message". Click that button and then paste the error in a message here using code tags. I see you tried to use them on your sketch code but you did it wrong. Please click the "Preview" button before posting to make sure that you have successfully used the code tags.

void setup() 
{
  pinMode(13,OUTPUT);

}

void loop() 
{
  digitalWrite(13,HIGH);
  delay(500);
  digitalWrite(13,LOW);
  delay(500);

}
[code]

Arduino: 1.6.11 (Windows 7), Board: "Arduino/Genuino Uno"

Sketch uses 928 bytes (2%) of program storage space. Maximum is 32,256 bytes.
Global variables use 9 bytes (0%) of dynamic memory, leaving 2,039 bytes for local variables. Maximum is 2,048 bytes.
C:\Program Files\Arduino\hardware\tools\avr/bin/avrdude -CC:\Program Files\Arduino\hardware\tools\avr/etc/avrdude.conf -v -patmega328p -carduino -PCOM3 -b115200 -D -Uflash:w:C:\Users\judy\AppData\Local\Temp\build65b20c9664b8eb80e8578873073e25b8.tmp/sketch_sep18a.ino.hex:i

avrdude: Version 6.0.1, compiled on Apr 15 2015 at 19:59:58
Copyright (c) 2000-2005 Brian Dean, http://www.bdmicro.com/
Copyright (c) 2007-2009 Joerg Wunsch

System wide configuration file is "C:\Program Files\Arduino\hardware\tools\avr/etc/avrdude.conf"

Using Port : COM3
Using Programmer : arduino
Overriding Baud Rate : 115200
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0x30
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0x20
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0x30
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0x20
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0x30
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0x20
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0x30
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0x20
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0x30
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0x20

An error occurred while uploading the sketch
avrdude done. Thank you.

This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.

Tried http://www.arduino.cc/en/Guide/Troubleshooting#upload

Maybe baud rate should be 9600?

(deleted)

Yeah - I'd guess it's using an old version of the bootloader if it's from 2012. Try calling it a duemillanove, and try nano, pro mini - all of those use the same microcontroller, but different bootloaders (hence different upload parameters needed).

Not understanding replies so posted "error message" in Google search. Found simplified answer understandable to total newbee.

(deleted)