idl 0.1.1

Library used for the idl language.
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod idl;
pub mod ids;

pub const INDENT: &str = "    ";
pub const MAX_LENGTH: usize = 100;
pub const COMMENT_START: &str = "--";

pub(crate) const NEW_LINE: &str = "\n\n";
pub(crate) const CLOSE_NEW_LINE: &str = "}\n\n";
pub(crate) const OPEN_NEW_LINE: &str = " {\n";