hdiff
packages
feed
hpython
-0.1: test/files/indent_optics_in.py
def fact(x): ret = 1 if x >= 1: for i in range(1,x+1): ret = ret * i return ret