mangle 0.0.5

Exolang that can take any utf8 text as valid code and return some result out of it
Documentation
pub enum Type {
    Int,
    String,
    Stack,
    Null,
}

pub struct Value {
    pub type_: Type,
    pub value: String,
}

impl Value {
    pub fn new(value: String, type_: Type) -> Value {
        Value { type_, value }
    }

    pub fn empty() -> Value {
        Value {
            value: String::new(),
            type_: Type::Null,
        }
    }
}