"""Program 2-4: Toggle green LED on a Pico board using native machine code""" from machine import Pin # Compile the following code to native machine code @micropython.native def delay(): """Delay loop""" for i in range(0, 95_785): pass LED = Pin(16) LED.init(Pin.OUT) while True: LED.on() delay() LED.off() delay()