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