aboutsummaryrefslogtreecommitdiff
path: root/tests/basics/for_return.py
blob: 0441352ad9c6f1221027d902454fc55dc3e5d4dd (plain)
1
2
3
4
5
6
7
# test returning from within a for loop

def f():
    for i in [1, 2, 3]:
        return i

print(f())