fork download
def foo():
  x = 123
  return lambda y: x+y

q = foo()

print q(5)
Success #stdin #stdout 0.02s 4676KB
stdin
Standard input is empty
stdout
128