t226.py 316 B

1234567891011121314151617
  1. for const in (1,2,3):
  2. print const
  3. def f():
  4. for const in (1,2,3):
  5. print const
  6. for object in (1,2,3):
  7. print object
  8. instanceof = 5
  9. void = 6
  10. var = 7
  11. delete = 8
  12. switch = 9
  13. default = 10
  14. catch = 11
  15. print instanceof, void, var, delete, switch, default, catch
  16. f()