diff --git a/main.leg b/main.leg index 0b6023a..8f61d43 100644 --- a/main.leg +++ b/main.leg @@ -1,6 +1,6 @@ # main.leg -- C parser + interpreter # -# Last edited: 2025-01-26 12:12:15 by piumarta on zora +# Last edited: 2025-01-26 12:13:05 by piumarta on zora %{ ; @@ -126,8 +126,6 @@ struct Return { type_t _type; oop value; }; struct Continue { type_t _type; }; struct Break { type_t _type; }; -typedef enum { T_INT = 0, T_FLOAT, T_VOID, T_ETC } base_t; - struct Tvoid { type_t _type; }; struct Tchar { type_t _type; }; struct Tshort { type_t _type; };