for const in (1,2,3):
    print const

def f():
    for const in (1,2,3):
        print const
    for object in (1,2,3):
        print object
    instanceof = 5
    void = 6
    var = 7
    delete = 8
    switch = 9
    default = 10
    catch = 11
    print instanceof, void, var, delete, switch, default, catch
f()
