fork download
  1. def foo(bar):
  2. print("inside foo")
  3. bar()
  4.  
  5. @foo
  6. def bar():
  7. print("inside boo")
  8.  
Success #stdin #stdout 0.02s 5760KB
stdin
Standard input is empty
stdout
inside foo
inside boo