1//! A parser for JSON file.
2//! And this is a example for JSON parser.
3//!
4//!     indent-4-space
5//!
6
7/// Matches foo str, e.g.: `foo`
8foo = { "foo" }
9
10/// Matches bar str
11///
12///   Indent 2, e.g: `bar` or `foobar`
13
14bar = { "bar" | "foobar" }
15
16bar1 = { "bar1" }
17
18/// Matches dar
19///
20/// Match dar description
21///
22
23dar = { "da" }