erg_compiler 0.6.53

Centimetre: the Erg compiler
Documentation
1
2
3
4
5
6
# in Python 3.7, `sum` takes no keyword arguments
def sum(iterable, start=0):
    s = start
    for i in iterable:
        s += i
    return s