OILS
/
build
/
testdata
/ lib.py
View on Github
|
oilshell.org
12 lines, 5 significant
1
"""
2
lib.py
3
"""
4
from __future__ import print_function
5
6
import sys
7
8
print(
'Hello from lib.py'
, file=sys.stderr)
9
10
def Crash():
11
raise RuntimeError(
'oops'
)
12