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