fork download
  1. def transform(n):
  2. def add(x):
  3. return n + x
  4. return add
  5.  
  6. f = transform(4)
  7. print f(3)
Success #stdin #stdout 0.01s 7728KB
stdin
Standard input is empty
stdout
7