Files
bash-tut/teil20/hello.py
2025-01-28 09:54:00 +01:00

10 lines
113 B
Python
Executable File

#! ./mybang
# Datei: hello.py
def main():
print("Hallo von Python")
if __name__ == "__main__":
main()