> ./build/release/compiler examples/pony.peg peg/ast.pony
-- Syntax Error --
/home/grfork/playground/pony/aoc2023/day02/_corral/github_com_ponylang_peg/examples/pony.peg:35:5:1
35: '=>' seq '}' cap?
^
expected end-of-file
There is a syntax error that has prevented the parser from being able to
understand the source text.
> ./build/release/compiler examples/peg.peg examples/json.peg
-- Syntax Error --
/home/grfork/playground/pony/aoc2023/day02/_corral/github_com_ponylang_peg/examples/json.peg:19:16:1
19: object <- -'{' (pair % ',') -'}'
^
expected end-of-file
There is a syntax error that has prevented the parser from being able to
understand the source text.