|
|
- #!/bin/python
- #
- # `(buffer-name)`
- #
- # Created by `(user-full-name)` on `(format-time-string "%d/%m/%Y")`.
- # Copyright `user-mail-address`. `(format-time-string "%Y")`. All rights reserved.
- #
-
- def main():
- print("hello world")
-
-
- if __name__ == "__main__":
- main()
|