school

thing1's amazing school repo
Log | Files | Refs | Submodules | README

exec.c (255B)


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