sdml_core/syntax/mod.rs
1/*!
2Constants for the syntactic elements of the language.
3 */
4
5pub const NAME_SDML: &str = "sdml";
6
7// ------------------------------------------------------------------------------------------------
8// Modules
9// ------------------------------------------------------------------------------------------------
10
11pub mod grammar;
12pub use grammar::*;
13
14pub mod model;
15pub use model::*;