This repository has been archived on 2019-12-12. You can view files and clone it, but cannot push or open issues or pull requests.
nathaniel smith 8751a6fa00 whee
2015-07-31 21:17:47 -07:00

20 lines
386 B
Python

def slurp(file_path):
contents = None
try:
with open(file_path, 'r', encoding="utf-8") as f:
contents = f.read()
except FileNotFoundError:
pass
except UnicodeDecodeError:
return contents
def thread(initial, *fns):
value = initial
for fn in fns:
value = fn(value)
return value
def p(x):
print(x)
return x