fork download
  1. class Thing:
  2. def __init__(self):
  3. self.num = 21
  4.  
  5. def double(foo):
  6. foo.num = foo.num * 2
  7.  
  8. thing = Thing()
  9.  
  10. double(thing)
  11.  
  12. print thing.num
Success #stdin #stdout 0.01s 9016KB
stdin
Standard input is empty
stdout
42