1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#include <stdio.h> #include <stdlib.h> #include "./builtin.h" #include "../global/util.h" #include "../tokenizer/tokenizer.h" int main(){ char *sample = "(let a:i64 5)"; ast_node *root = tokenize(sample); doCall(root); free(root); return 0; }