def main:
    numbers = [1, 2, 3, 4, 5]
    sum = numbers.fold 0 (a: b: a + b)
    print sum