GodotPythonJSONRPC/SomePythonThingy/some_utility_script.py

11 lines
106 B
Python
Raw Permalink Normal View History

2024-07-15 07:39:58 -07:00
#!/usr/bin/python3
import time
a = 10
while a > 0:
print("asdf: ", a)
a -= 1
time.sleep(1)