1Pegex::Resources(3) User Contributed Perl Documentation Pegex::Resources(3)
2
3
4
6 The best way to learn about Pegex, is to look at projects that
7 currently use it.
8
9 This document attempts to name as many interesting Pegex things as
10 possible.
11
12 IRC Channel
13 Many of the people who are actively developing Pegex, hangout on the
14 "#pegex" IRC channel on "irc.freenode.net". Stop by. We'd love to chat
15 with you!
16
17 Note, if you are unfamiliar with IRC, there's a really simple way to
18 get started. Simply click this link: <http://webchat.freenode.net/>.
19 Then, Just enter a nickname, enter '#pegex' for the channel, and enter
20 the captcha. You will be connected and you type stuff in the input box
21 at the bottom of the screen. After you type something, hit the Enter
22 key, and your text will be sent. Try it!
23
24 The examples Directory
25 The Pegex git-repository/code-base is here:
26 <https://github.com/ingydotnet/pegex-pm>. It contains a directory of
27 example parsers:
28
29 "calculator1.pl"
30 This an arithmetic expression parser and evaluator. It uses the
31 precedence climbing method to deal with operator precedence.
32
33 "calculator2.pl"
34 This is the same as above, except it uses a precedence table, and
35 the shunting yard algorithm, to handle precedence.
36
37 Pegex Grammar Repositories
38 • The Pegex Grammar <https://github.com/ingydotnet/pegex-pgx>
39
40 • The TestML Grammar <https://github.com/ingydotnet/testml-pgx>
41
42 • A JSON Grammar <https://github.com/ingydotnet/json-pgx>
43
44 • A CronTab Grammar <https://github.com/ingydotnet/crontab-pgx>
45
46 Module Repositories
47 • The Pegex Perl Module <https://github.com/ingydotnet/pegex-pm>
48
49 • The TestML Perl Module <https://github.com/ingydotnet/testml-pm>
50
51 • Pegex JSON Parser for Perl <https://github.com/ingydotnet/pegex-
52 json-pm>
53
54 • A JSONY Decoder Perl Module <https://github.com/ingydotnet/json-
55 pgx>
56
57 • A CronTab Parser Perl Module <https://github.com/ingydotnet/pegex-
58 crontab-pm>
59
60
61
62perl v5.38.0 2023-07-21 Pegex::Resources(3)