Help for this page

Select Code to Download


  1. or download this
    sub foo {
      return 'hello' unless $_[0];
    }
    print "First: " . foo(1) . "\n";
    print "Second: " . foo(0) . "\n";
    
  2. or download this
    my $parser_remove = XML::Rules->new(
        rules => [
    ...
        ],
        style => 'filter',
    );