1 | """ |
2 | bin/hello_mylib.py |
3 | """ |
4 | from __future__ import print_function |
5 | |
6 | from typing import List |
7 | |
8 | from mycpp.mylib import print_stderr |
9 | |
10 | |
11 | def main(argv): |
12 | # type: (List[str]) -> int |
13 | print('hi') |
14 | print_stderr('stderr') |
15 | if len(argv): |
16 | return 1 |
17 | else: |
18 | return 0 |