I guess we're doing this again...

This commit is contained in:
Eryn Wells 2018-08-20 16:30:59 -07:00
parent 0208ecb4d2
commit a81e9b4258

View file

@ -25,6 +25,11 @@ pub enum ObjectPtr {
Ptr(Box<Object>), Ptr(Box<Object>),
} }
pub trait Object :
fmt::Display,
{ }
#[derive(Debug, PartialEq)] #[derive(Debug, PartialEq)]
pub enum Object { pub enum Object {
Bool(bool), Bool(bool),