Help for this page

Select Code to Download


  1. or download this
    use greenObjects;
    use redObjects;
    ...
    my @objects=();
    push(@objects, greenObjects->new());
    push(@objects, redObjects->new());
    
  2. or download this
    my @objects=();
    push(@objects, $_->new()) foreach (@ARGV);