webamp/experiments/maki-interpreter/variable.js
2019-11-30 13:42:53 -08:00

16 lines
221 B
JavaScript

class Variable {
constructor(props) {
this._props = props;
this.type = props.type;
}
getValue() {
return this._value;
}
setValue(value) {
this._value = value;
}
}
module.exports = Variable;