ledstick/python/hello.py
Patrick Moessler fc4005cc49 v2
2025-02-24 00:29:15 +01:00

6 lines
84 B
Python

def main():
print("Hello from python!")
if __name__ == "__main__":
main()