Help for this page

Select Code to Download


  1. or download this
    my %data = (
        foo1 => [
    ...
    
    # . . . 
    );
    
  2. or download this
    my @act_bsites = @{$data{$dataset}};
    
  3. or download this
    # file: /path/to/foosites
    {
    ...
    
    # . . . 
    };
    
  4. or download this
    my @act_bsites = @{(do '/path/to/foosites')->{$dataset}};