/* Object Creation */
Object Cashflow {
  name -> String,
  number -> Int
};

Obj Cashflow cf := Cashflow();

cf.name := "start";
cf.number := 1;  

Int num;

num = cf.number;

print(num);
