OILS
/
mycpp
/
examples
/ pea_hello.py
View on Github
|
oilshell.org
10 lines, 4 significant
1
#!/usr/bin/env python2
2
from __future__ import print_function
3
4
from typing import List
5
6
# The simplest program!
7
8
def main(argv):
9
# type: (List[str]) -> int
10
return 42