fork download
  1. def helper(func):
  2. def decorated_func():
  3. print("Hi")
  4. func()
  5. print("heloo")
  6. return decorated_func
  7. @helper
  8. def domeFunc():
  9. print("helo3")
  10. someFunc()
Success #stdin #stdout 0.09s 14056KB
stdin
Standard input is empty
stdout
Standard output is empty