Are properties within an object limited to 'singletons' (numbers, strings, etc), or can properties be compound values (arrays)?
( class myClass
( properties
propA 0
propB 0
propC[5] ( 0 2 3 5 1 )
)
)
I'm thinking that this is probably not appropriate, and the way to do it is create child object of the myClass object for propC, allowing me to have as many instances of propC as I would like.