Help for this page

Select Code to Download


  1. or download this
    my @objarray = ();
    
  2. or download this
    my @objarray = (
        { },
    ...
       ({ }) x 87, # 87 more elements...
        { },
        );
    
  3. or download this
    my @objarray = (
        { 'apts' => '???', },
    ...
       ({ 'apts' => '???', }) x 87,
        { 'apts' => '???', },
        );
    
  4. or download this
    my @objarray = (
        { 'apts' => [ [11,12], [13,14], [15,16], ], },
    ...
       ({ 'apts' => '???', }) x 87,
        { 'apts' => [ [91,92], [93,94], [95,96], ], },
        );
    
  5. or download this
    >perl -wMstrict -le
    "my @objarray = (
    ...
    "
    elements in array: 90
    96