> to always use refs or always use objects. You intent to always use only one of them?
Yes, then you have to use refs of course, as value objects do not always work. For inheritance you need ref objects, for many to one data structures you need refs, for dynamic structures like trees you may need refs. That is why languages like Java. Ruby, Python use hidden refs always.
