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

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