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