Help for this page

Select Code to Download


  1. or download this
    use APR;
    open(FH, '>test.txt') or die "Cannot open test.txt: $!\n";
    print FH "This is some text\n";
    close(FH);
    
  2. or download this
    use ExtUtils::MakeMaker;
    use APR;
    ...
    for my $key (qw(NAME VERSION_FROM AUTHOR ABSTRACT)) {
       print "$key -> $r->{$key}\n";
    }