Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    
    ...
    
    Parse::RecDescent->PreCompile($grammar, 'NestedListParser')
        or die("Bad Grammar\n");
    
  2. or download this
    use NestedListParser qw( );
    
    ...
        $self->{list} = $parser->parse($file)
            or die("Bad data\n");
    }