Help for this page

Select Code to Download


  1. or download this
    my @array = (10 .. 12);
    $source{'data'} = \@array;
    
  2. or download this
        $data = 'data'; # via arg
        my @array = $source{$data} ;
        return @array;
    
  3. or download this
    push (@{ $hash{foo}{bar} }, @{ addSomeNumbersFromSource("data") });