Object Cashflow {
  name -> String,
  age -> Int
};        

Obj Cashflow cf;

Int ages[4] := {1,2,3,4};
Obj Cashflow gf := Cashflow();

Print(ages[2]);
