So, I coded a package which describes an object, and I'm having a couple of issues. Primarily, I want to know if I can make a list, each entry of which is an object (or a reference to an object). i.e.:
for ($i=0; $i<10; $i++) {
$list[$i] = Object->new();
}
Is this valid? And if so, how...