munyo 0.8.0

A data language which aims to be the most efficient way to handwrite data.
Documentation
1
2
3
4
5
6
7
8
use pest_derive::Parser;

#[derive(Parser)]
#[grammar = "munyo_grammar.pest"]
pub(crate) struct MunyoParser;

pub(crate) type Pairs<'a> = pest::iterators::Pairs<'a, Rule>;
pub(crate) type Pair<'a> = pest::iterators::Pair<'a, Rule>;