dictle is a dictionary written in c inspired by python.
- Persons
#include <stdio.h>
#include <dictle/dictionary.h>
int main() {
dict_t* person = dict_create(STRING, STRING, "Name", "John");
dict_append(&person, STRING, INTEGER, "Age", 50);
dict_print(person);
}- Infinite recursion
- Implement floating point parsing for string to dictionary
- Note: more features coming soon