diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2017-01-18 21:06:49 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-01-21 07:04:30 +0700 |
commit | 2e830338cdbee46f37906488b7aee8ca8ac34b1e (patch) | |
tree | 4310ec3a3da5ea434fd95c2761ff2b8ae4d5153a /perl/perl-Pegex/README | |
parent | 30bb88543183d5a431cd8509d64879321aa9549e (diff) |
perl/perl-Pegex: Switch to i586 + new maintainer.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'perl/perl-Pegex/README')
-rw-r--r-- | perl/perl-Pegex/README | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/perl/perl-Pegex/README b/perl/perl-Pegex/README index dba8a7c05788..cb64e748222c 100644 --- a/perl/perl-Pegex/README +++ b/perl/perl-Pegex/README @@ -1,19 +1,19 @@ -Pegex is an Acmeist parser framework. It allows you to easily create parsers -that will work equivalently in lots of programming languages! The inspiration -for Pegex comes from the parsing engine upon which the postmodern programming -language Perl 6 is based on. Pegex brings this beauty to the other justmodern +Pegex is an Acmeist parser framework. It allows you to easily create parsers +that will work equivalently in lots of programming languages! The inspiration +for Pegex comes from the parsing engine upon which the postmodern programming +language Perl 6 is based on. Pegex brings this beauty to the other justmodern languages that have a normal regular expression engine available. -Pegex gets it name by combining Parsing Expression Grammars (PEG), with +Pegex gets it name by combining Parsing Expression Grammars (PEG), with Regular Expessions (Regex). That's actually what Pegex does. -PEG is the cool new way to elegantly specify recursive descent grammars. The -Perl 6 language is defined in terms of a self modifying PEG language called -Perl 6 Rules. Regexes are familiar to programmers of most modern programming -languages. Pegex defines a simple PEG syntax, where all the terminals are +PEG is the cool new way to elegantly specify recursive descent grammars. The +Perl 6 language is defined in terms of a self modifying PEG language called +Perl 6 Rules. Regexes are familiar to programmers of most modern programming +languages. Pegex defines a simple PEG syntax, where all the terminals are regexes. This means that Pegex can be quite fast and powerful. -Pegex attempts to be the simplest way to define new (or old) Domain Specific -Languages (DSLs) that need to be used in several programming languages and -environments. Things like JSON, YAML, Markdown etc. It also great for writing +Pegex attempts to be the simplest way to define new (or old) Domain Specific +Languages (DSLs) that need to be used in several programming languages and +environments. Things like JSON, YAML, Markdown etc. It also great for writing parsers/compilers that only need to work in one language. |