Help for this page

Select Code to Download


  1. or download this
     my %data;
    while (<DATA>) {
        next if /mcp/;
    ...
        my ($s, $n) = split;
        push @{ $data{$s} }, $n;
    }
    
  2. or download this
    open(rat_event,"RAT_EVENT");
    @rat_event = <rat_event>;
    
  3. or download this
    my %rat_event;
    while <RAT_EVENT> {
    # Same as above
    }