summaryrefslogtreecommitdiffstats
path: root/vendor/pest_derive/examples/base.pest
blob: c63d48af12581f0f4351758f25203f249fb17068 (plain)
1
2
WHITESPACE   =  _{ " " | "\t" | NEWLINE }
int          =  @{ (ASCII_NONZERO_DIGIT ~ ASCII_DIGIT+ | ASCII_DIGIT) }