Files
tyche/lib/tyche.h
2026-05-10 22:04:38 -05:00

14 lines
312 B
C

#ifndef TYCHE_TYCHE_H
#define TYCHE_TYCHE_H
typedef enum {
TT_NIL, TT_INTEGER, TT_REAL, TT_STRING, TT_STRING_CONST, TT_ARRAY, TT_TABLE, TT_FUNCTION, TT_NATIVE_PTR,
} TYC_TYPE;
typedef enum {
T_OK = 0,
T_ERR_STACK_UNDERFLOW = -1, T_ERR_STACK_FP_UNDERFLOW = -2,
} TYC_RESULT;
#endif //TYCHE_TYCHE_H