Add boolean module to types

This commit is contained in:
Eryn Wells 2016-12-29 12:22:29 -05:00
parent f799d7642d
commit 1728ea2868
2 changed files with 6 additions and 0 deletions

5
src/types/boolean.rs Normal file
View file

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

View file

@ -2,4 +2,5 @@
* Eryn Wells <eryn@erynwells.me>
*/
pub mod boolean;
pub mod number;