File: test.py

package info (click to toggle)
puremagic 2.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,472 kB
  • sloc: python: 2,138; makefile: 9; sh: 7
file content (9 lines) | stat: -rw-r--r-- 110 bytes parent folder | download
1
2
3
4
5
6
7
8
9
# Very simple test python file


def main():
    print("Hello World")


if __name__ == "__main__":
    main()