File: helloworld.py

package info (click to toggle)
jupyter-sphinx-theme 0.0.6%2Bds1-13
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 308 kB
  • sloc: makefile: 168; python: 119; sh: 6
file content (9 lines) | stat: -rwxr-xr-x 99 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
#!/usr/bin/python3

def main():
	print 'Hello world !'

if __name__ == '__main__':
	main()

## eos