EBNF Rule: Any
EBNF

Prev:EBNF Rule: Strings
Next:EBNF Rule: Sequence


A full stop character (.) will match any single token in the input string. The AST resulting from this is the token itself.

Examples
USING: prettyprint peg.ebnf ; "abc" EBNF[[ rule="a" . "c" ]] .
V{ "a" 98 "c" }