OILS / bin / hello.py View on Github | oils.pub

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