OILS / build / testdata / lib.py View on Github | oilshell.org

12 lines, 5 significant
1"""
2lib.py
3"""
4from __future__ import print_function
5
6import sys
7
8print('Hello from lib.py', file=sys.stderr)
9
10def Crash():
11 raise RuntimeError('oops')
12