[types] Add Bools to the mix

This commit is contained in:
Eryn Wells 2018-08-26 09:52:17 -07:00
parent 4d5fcb69ee
commit d0441965eb
3 changed files with 29 additions and 16 deletions

View file

@ -1,7 +1,9 @@
mod bool;
mod object;
mod pair;
mod sym;
pub use bool::Bool;
pub use object::Obj;
pub use pair::Pair;
pub use sym::Sym;