Move simple types to types/mod.rs

This commit is contained in:
Eryn Wells 2017-01-02 11:47:54 -05:00
parent bbf161ede9
commit 149aa50fa9
2 changed files with 3 additions and 7 deletions

View file

@ -1,5 +0,0 @@
/* boolean.rs
* Eryn Wells <eryn@erynwells.me>
*/
pub type Boolean = bool;

View file

@ -2,8 +2,9 @@
* Eryn Wells <eryn@erynwells.me>
*/
pub use self::boolean::Boolean;
pub use self::number::Number;
pub mod boolean;
pub mod number;
pub type Boolean = bool;
pub type Character = char;