GodotPythonJSONRPC/SomePythonThingy/test_a_thing.py

14 lines
166 B
Python
Raw Normal View History

2024-07-14 18:40:49 -07:00
#!/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)