fork download
  1. def is_called():
  2. def is_returned():
  3. print("Hello")
  4. return is_returned
  5.  
  6. new = is_called()
  7.  
  8. new()
Success #stdin #stdout 0.13s 14212KB
stdin
Standard input is empty
stdout
Hello