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