Colored Variables (att:var) 
 
 
var P := class Value {var type :="Type of Persons\n"; 
   var returnType := method [] {return att:type}; }; 
var S := class P {var type := "Type of Staff\n"} ;
print (new P).returnType[]; // or  (new P).att:returnType[]
print (new S).returnType[];