fork download
  1. def f1():
  2. first = 10
  3. def f2():
  4. second = first + 10
  5. return second
  6. return f2()
  7. print f1()
Success #stdin #stdout 0.01s 7736KB
stdin
Standard input is empty
stdout
20