fork(2) download
  1. class Foo:
  2. i = 1 # initialization
  3. def __init__(self):
  4. self.i += 1
  5.  
  6. t = Foo()
  7. print(Foo.i)
  8. print(t.i)
Success #stdin #stdout 0.02s 27712KB
stdin
Standard input is empty
stdout
1
2