fork download
  1. def foo():
  2. global i
  3. global i
  4. i+=3
  5. i=0
  6. foo()
  7. print(i)
  8.  
Success #stdin #stdout 0.02s 9224KB
stdin
Standard input is empty
stdout
3