pimoroni-pico/micropython/badger2040_modules_py/boot.py

7 lines
136 B
Python
Raw Normal View History

2022-02-24 16:49:28 +00:00
try:
open("main.py", "r")
except OSError:
with open("main.py", "w") as f:
f.write("import _launcher")
2022-02-24 16:49:28 +00:00
f.flush()