fork download
  1. def anime(func):
  2. def anime():
  3. print("anime")
  4. func.anime = anime
  5. return func
  6.  
  7. @anime
  8. def f():
  9. pass
  10.  
  11.  
  12. f.anime()
Success #stdin #stdout 0.02s 9232KB
stdin
Standard input is empty
stdout
anime