Blink Raspberry Pico

from machine import Pin
led = Pin(25, Pin.OUT)

led.toggle()
Precious Pig