sibil/src/types/mod.rs

15 lines
226 B
Rust
Raw Normal View History

/* mod.rs
* Eryn Wells <eryn@erynwells.me>
*/
pub use self::number::Number;
pub mod number;
2017-01-02 11:47:54 -05:00
pub type Boolean = bool;
pub type Character = char;
2017-01-12 21:18:20 -08:00
pub trait Value { }
impl Value for Boolean { }
impl Value for Character { }