OILS / mycpp / examples / pea_hello.py View on Github | oils.pub

10 lines, 4 significant
1#!/usr/bin/env python2
2from __future__ import print_function
3
4from typing import List
5
6# The simplest program!
7
8def main(argv):
9 # type: (List[str]) -> int
10 return 42