fork download
  1. def f1(arg):
  2. def f2():
  3. print(arg)
  4. return f2
  5.  
  6. a = f1('puk')
  7. a()
Success #stdin #stdout 0.03s 9640KB
stdin
Standard input is empty
stdout
puk