virtual-star/lib/struct/variable.js
2025-04-21 21:46:30 -04:00

9 lines
122 B
JavaScript

export class Variable {
key;
value;
constructor(k, v) {
this.key = k;
this.value = v;
}
}