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

8 lines
95 B
Python
Executable File

#! ./mybang
def main():
print("Hallo aus teil20!")
if __name__ == "__main__":
main()