fork download
  1. def do_stuff():
  2. print 'Stuff done'
  3.  
  4. '''
  5. a) comments
  6. '''
  7. try:
  8. do_stuff()
  9.  
  10. # b) comments
  11. except Error:
  12. do_stuff()
  13.  
Success #stdin #stdout 0.07s 8840KB
stdin
Standard input is empty
stdout
Stuff done