########################################################################### # Setup code goes below, this is called once at the start of the program: # ########################################################################### import utime print('Hello world! I can count:') i = 1 while True: print(i) i += 1 utime.sleep(1) # Delay for 1 second