fork download
  1.  
  2. def ret(*args): return args
  3.  
  4. print(ret(1, 2, 3))
  5.  
  6. for _ in range(1000000): ret = ret.__call__
  7.  
  8. print(ret(1, 2, 3))
Runtime error #stdin #stdout 0.9s 46384KB
stdin
Standard input is empty
stdout
Standard output is empty