OILS
/
bin
/ hello.py
View on Github
|
oils.pub
16 lines, 7 significant
1
"""
2
bin/hello.py
3
"""
4
from __future__ import print_function
5
6
from typing import List
7
8
9
def main(argv):
10
# type: (List[str]) -> int
11
12
#print('hi')
13
if len(argv) == 1:
14
return 0
# no args, success
15
else:
16
return 42