Help for this page

Select Code to Download


  1. or download this
    my @keys = sort keys %functions;
    
  2. or download this
    my $info = "out.txt";
    open my $out,">", $info or die "could not open $info $!";
    print $out "Key: $_ and Value: $functions{$_}\n" for sort keys %functi
    +ons;
    close $out;