fork download
  1. def add_decorator(func):
  2. def wrapper(a, b):
  3. return func(a, b)
  4. return wrapper
  5.  
  6. @add_decorator
  7. def add(a, b):
  8. return a + b
  9.  
  10. print(add(5, 3))
  11.  
Success #stdin #stdout 0.01s 7136KB
stdin
Standard input is empty
stdout
8