fork(2) download
  1. def main():
  2. try:
  3. opts = {1,2,3}
  4. except:
  5. pass
  6. for opt in opts:
  7. print( opt )
  8.  
  9. main()
Success #stdin #stdout 0.1s 10088KB
stdin
Standard input is empty
stdout
1
2
3