import machine	# For hardware functions
import time		# For time functions

led = machine.Pin(25, machine.Pin.OUT)	# Set pin 25 (built in led on XIAO RP2040) as an output

while True:			# Infinite loop
    led.toggle()	# Change the led's status
    time.sleep(0.5)	# Delay