1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use std::fmt::Debug;

pub struct Variable {
    name: String,
}

impl Variable {
    pub fn new(name: String) -> Variable {
        Variable { name: name }
    }
}

impl Debug for Variable {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        write!(f, "Variable {{ name: {:?} }}", self.name)
    }
}