Arduino MKR1000 question

Hello!
I bought an Arduino MKR1000 device yesterday, which is well and good of course... However I do have one question:
"Does this family member have an LED connected to Pin 13 which will blink in orange when that sketch is loaded?" I ask because the getting started page for it contains that one there.

I also saw an LED blinking in green when it was first connected. Naturally it stopped doing that after that sketch was first uploaded. When nothing happened I reconnected the device, and let it pick a new port. Then I uploaded it again, and also connected a green LED of my own between the ground and pin 13 points. It's now blinking properly.

Otherwise this is an amazing board, and I'll be certainly be hardpressed to find an ultimate something else for it to manage.

The onboard LED that is on pin 13 on Arduino boards such as Uno and Mega is instead on pin 6 on the MKR1000. The macro LED_BUILTIN will allow you to write code that will adapt to the built in LED on any board. See Tools > Examples > 01.Basic > Blink in Arduino IDE 1.6.12 and newer for an example of the use of this macro.

pert:
The onboard LED that is on pin 13 on Arduino boards such as Uno and Mega is instead on pin 6 on the MKR1000. The macro LED_BUILTIN will allow you to write code that will adapt to the built in LED on any board. See Tools > Examples > 01.Basic > Blink in Arduino IDE 1.6.12 and newer for an example of the use of this macro.

Hello!
Makes sense. Need to update things then.