This repository has been archived on 2019-12-12. You can view files and clone it, but cannot push or open issues/pull-requests.
|
def slurp(file_path):
|
|
contents = None
|
|
try:
|
|
with open(file_path, 'r') as f:
|
|
contents = f.read()
|
|
except FileNotFoundError:
|
|
pass
|
|
return contents
|
|
|
|
def thread(initial, *fns):
|
|
value = initial
|
|
for fn in fns:
|
|
value = fn(value)
|
|
return value
|
|
|
|
def p(x):
|
|
print(x)
|
|
return x
|