# Identifier --- Store vars, types and symbols as compressed strings ## Object Definitions ```c #define KPL_IDENTIFIER_PARTS 6 // TODO 60 charaters of [A-Za-z0-9_] in 48 bytes typedef struct { uint64_t parts[KPL_IDENTIFIER_PARTS]; } kpl_identifier; ```