Files
Interpreters/hello.py
2025-04-09 16:54:52 +01:00

7 lines
89 B
Python

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