fork(1) download
  1. def foo(a, b):
  2. return False
  3.  
  4. def die():
  5. print("We are died :(")
  6.  
  7. def bar():
  8. pass
  9.  
  10. def joe_user_is_alpha():
  11. print("JoeUser is wrong :(")
  12.  
  13. something = True
  14.  
  15. if (something):
  16. foo(
  17. "11111111111111",
  18. "22222222222222"
  19. ) or die()
  20. bar()
  21. joe_user_is_alpha()
Success #stdin #stdout 0.02s 9168KB
stdin
Standard input is empty
stdout
We are died :(
JoeUser is wrong :(