GodotPythonJSONRPC/SomePythonThingy/test_a_thing.py
2024-07-14 18:40:49 -07:00

14 lines
166 B
Python

#!/usr/bin/python3
import time
def some_function_to_call():
print("butts")
a = 5
while a > 0:
a -= 1
print(a)
time.sleep(1.0)