You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
360 B
Python
12 lines
360 B
Python
###########################################################################
|
|
# 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
|