# Collection of code snippets by Arne Vajhøj 
# (likely posted to comp.os.vms/INFO-VAX, INFO-TPU, MACRO32, eksperten.dk, newz.dk, LinkedIn or other place sometime between 1990 and now) 
class C:
  v = 0
  def __init__(self,v2):
    self.v = v2 + 2
  def test(self):
    print self.v
