blob: 73961acc52a6b5d9e44a501e4d96f08e103068fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#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;
}
|