Select Git revision
instructions.js
-
Brady James Garvin authoredBrady James Garvin authored
instructions.js 264 B
export const ASSIGN = '=';
export const ADD = '+=';
export const SUBTRACT = '-=';
export const MULTIPLY = '*=';
export const DIVIDE = '/=';
export class Instruction {
constructor(operation, value) {
this.operation = operation;
this.value = value;
}
}