fork download
  1. def do_one():
  2. print 1
  3.  
  4.  
  5. def do_two():
  6. print 2
  7.  
  8.  
  9. huita = False
  10.  
  11. do_one() if huita else do_two()
Success #stdin #stdout 0s 23352KB
stdin
Standard input is empty
stdout
2