Add Value trait to type structs

This commit is contained in:
Eryn Wells 2017-01-12 21:18:20 -08:00
parent bcedfe2f81
commit c2209a8a8a

View file

@ -8,3 +8,7 @@ pub mod number;
pub type Boolean = bool;
pub type Character = char;
pub trait Value { }
impl Value for Boolean { }
impl Value for Character { }