-
-
Save ingydotnet/8628969 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env perl | |
| use Pegex::Parser; | |
| use VIC::Grammar; | |
| use VIC::Receiver; | |
| my $parser = Pegex::Parser->new( | |
| grammar => VIC::Grammar->new, | |
| receiver => VIC::Receiver->new, | |
| ); | |
| $parser->parse(do {local $; <>}); | |
| print $parser->receiver->data; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment