Skip to content

Commit

Permalink
Create index.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Gesugao-san authored Nov 2, 2023
1 parent e5d24e4 commit aa47af8
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions index.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

def _main():
"""This is docstring.
See: https://docs.python.org/3/tutorial/controlflow.html#defining-functions
"""
raise NotImplementedError
#

if __name__ == "__main__":
print("run")
print()

_main()

print()
print("stop")

SystemExit(0) # exit(0)

0 comments on commit aa47af8

Please sign in to comment.