summaryrefslogtreecommitdiff
path: root/docs/examples/tutorial/pure/dostuff.py
blob: 7a88533c58a232b60f8c8addf57d535b5df9e0d5 (plain)
1
2
3
4
5
def dostuff(n):
    t = 0
    for i in range(n):
        t += i
    return t