#ifndef BDL_OPS_H #define BDL_OPS_H typedef enum Ops { OP_CONSTANT, OP_SUM, OP_SUB, OP_MUL, OP_DIV, OP_MOD, OP_NOT, OP_AND, OP_OR, OP_EQUAL, OP_LESS, OP_GREATER, OP_LESS_EQUAL, OP_GREATER_EQUAL, OP_RETURN, } Ops; #endif // BDL_OPS_H