packages feed

hpython-0.1: test/files/indent_optics_out2.py

def fib(x):
    if x < 2:
        return 1
    else:
        return fib(x-1) + fib(x-2)