GodotPythonJSONRPC/SomePythonThingy/some_utility_script.py
2024-07-15 07:39:58 -07:00

11 lines
106 B
Python

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