Operation.h 128 B

123456
  1. #ifndef OPERATION_H
  2. #define OPERATION_H
  3. typedef enum Operation { OP_NOTHING, OP_PUSH_INT, OP_ADD, OP_PRINT } Operation;
  4. #endif