t254.py 78 B

12345678
  1. class X:
  2. x = 4
  3. x = X()
  4. stuff = x.x
  5. print stuff
  6. things = X.x
  7. print things