flou 0.1.0

Parser for Flou, a flowchart description language.
Documentation
1
2
3
4
5
6
7
8
9
10
pub(super) const RELATIVE_SIGIL: char = '@';
pub(super) const LABEL_SIGIL: char = '#';
pub(super) const SIDES_SIGIL: char = ':';

pub(super) const LIST_SEPARATOR: char = ',';
pub(super) const TERMINATOR: char = ';';
pub(super) const LIST_DELIMITERS: (char, char) = ('(', ')');
pub(super) const BLOCK_DELIMITERS: (char, char) = ('{', '}');

pub(super) const EMPTY: &str = "_";