Skip to content

Instantly share code, notes, and snippets.

@shelling
Created July 15, 2014 10:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shelling/8524c504f373b86acf24 to your computer and use it in GitHub Desktop.
Save shelling/8524c504f373b86acf24 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl6
use v6;
grammar Simple {
rule TOP {
^ <integer> $
};
token integer {
"-"? <[1..9]> <[0..9]>*
};
}
say Simple.parse("10")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment