.\" -*- mode: troff; coding: utf-8 -*-
.\" Automatically generated by Pod::Man 5.0102 (Pod::Simple 3.45)
.\"
.\" Standard preamble:
.\" ========================================================================
.de Sp \" Vertical space (when we can't use .PP)
.if t .sp .5v
.if n .sp
..
.de Vb \" Begin verbatim text
.ft CW
.nf
.ne \\$1
..
.de Ve \" End verbatim text
.ft R
.fi
..
.\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>.
.ie n \{\
. ds C` ""
. ds C' ""
'br\}
.el\{\
. ds C`
. ds C'
'br\}
.\"
.\" Escape single quotes in literal strings from groff's Unicode transform.
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\"
.\" If the F register is >0, we'll generate index entries on stderr for
.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
.\" entries marked with X<> in POD. Of course, you'll have to process the
.\" output yourself in some meaningful fashion.
.\"
.\" Avoid warning from groff about undefined register 'F'.
.de IX
..
.nr rF 0
.if \n(.g .if rF .nr rF 1
.if (\n(rF:(\n(.g==0)) \{\
. if \nF \{\
. de IX
. tm Index:\\$1\t\\n%\t"\\$2"
..
. if !\nF==2 \{\
. nr % 0
. nr F 2
. \}
. \}
.\}
.rr rF
.\" ========================================================================
.\"
.IX Title "Pegex::Resources 3"
.TH Pegex::Resources 3 2024-09-01 "perl v5.40.0" "User Contributed Perl Documentation"
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
.nh
.SH "Pegex Resources"
.IX Header "Pegex Resources"
The best way to learn about Pegex, is to look at projects that
currently use it.
.PP
This document attempts to name as many interesting Pegex things as possible.
.SS "IRC Channel"
.IX Subsection "IRC Channel"
Many of the people who are actively developing Pegex, hangout on the \f(CW\*(C`#pegex\*(C'\fR
IRC channel on \f(CW\*(C`irc.freenode.net\*(C'\fR. Stop by. We'd love to chat with you!
.PP
Note, if you are unfamiliar with IRC, there's a really simple way to get
started. Simply click this link: . Then, Just
enter a nickname, enter '#pegex' for the channel, and enter the captcha. You
will be connected and you type stuff in the input box at the bottom of the
screen. After you type something, hit the Enter key, and your text will be
sent. Try it!
.SS "The examples Directory"
.IX Subsection "The examples Directory"
The Pegex git\-repository/code\-base is here:
.
It contains a directory of example parsers:
.ie n .IP """calculator1.pl""" 4
.el .IP \f(CWcalculator1.pl\fR 4
.IX Item "calculator1.pl"
This an arithmetic expression parser and evaluator. It uses the precedence
climbing method to deal with operator precedence.
.ie n .IP """calculator2.pl""" 4
.el .IP \f(CWcalculator2.pl\fR 4
.IX Item "calculator2.pl"
This is the same as above, except it uses a precedence table, and the shunting
yard algorithm, to handle precedence.
.SS "Pegex Grammar Repositories"
.IX Subsection "Pegex Grammar Repositories"
.IP \(bu 4
The Pegex Grammar
.IP \(bu 4
The TestML Grammar
.IP \(bu 4
A JSON Grammar
.IP \(bu 4
A CronTab Grammar
.SS "Module Repositories"
.IX Subsection "Module Repositories"
.IP \(bu 4
The Pegex Perl Module
.IP \(bu 4
The TestML Perl Module
.IP \(bu 4
Pegex JSON Parser for Perl
.IP \(bu 4
A JSONY Decoder Perl Module
.IP \(bu 4
A CronTab Parser Perl Module