Examples/hallo.py@b99e7fd55fd3
Examples/hallo.py
Thu, 07 Jul 2022 11:23:56 +0200
- author
- Detlev Offenbach <detlev@die-offenbachs.de>
- date
- Thu, 07 Jul 2022 11:23:56 +0200
- branch
- eric7
- changeset 9209
- b99e7fd55fd3
- parent 12
-
1d8dd9706f46
- permissions
- -rw-r--r--
Reorganized the project structure to use the source layout in order to support up-to-date build systems with "pyproject.toml".
#!/usr/bin/env python
import sys
def main():
print("Hello World!")
sys.exit(0)
if __name__ == "__main__":
main()