summaryrefslogtreecommitdiff
path: root/examples/base.pest
diff options
context:
space:
mode:
Diffstat (limited to 'examples/base.pest')
-rw-r--r--examples/base.pest2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/base.pest b/examples/base.pest
new file mode 100644
index 0000000..c63d48a
--- /dev/null
+++ b/examples/base.pest
@@ -0,0 +1,2 @@
+WHITESPACE = _{ " " | "\t" | NEWLINE }
+int = @{ (ASCII_NONZERO_DIGIT ~ ASCII_DIGIT+ | ASCII_DIGIT) } \ No newline at end of file