Skip to content

Instantly share code, notes, and snippets.

@ingydotnet
Created January 26, 2014 05:45
Show Gist options
  • Select an option

  • Save ingydotnet/8628969 to your computer and use it in GitHub Desktop.

Select an option

Save ingydotnet/8628969 to your computer and use it in GitHub Desktop.
#!/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