#ifndef BDL_OPS_H #define BDL_OPS_H typedef enum Ops { OP_CONSTANT, OP_SUM, OP_SUB, OP_MUL, OP_DIV, OP_MOD, OP_RETURN, } Ops; #endif // BDL_OPS_H