1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Name --- Each word representing a var, symbol or type gets an `NAME_IDENTIFIER` -> `kpl_name*` associated with it ## Object Definitions ```c typedef struct _kpl_name { KPL_POOL_HEADER(struct _kpl_name); char c_str[]; } kpl_name; ```