pub type VarStore = VarStore<Value>;
struct VarStore { pub name: String, pub val: Value, }
name: String
val: Value