"""Program 2-1: Toggling green LED on a Pico board""" from machine import Pin LED = Pin(16) LED.init(Pin.OUT) while True: LED.on() LED.off()