blob: 8775526ba86bb3ce04a4791a7b4eaf794f3087db (
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 = "(write ['h','e','l','l','o','\n'])";
ast_node *root = tokenize(sample);
doCall(root);
free(root);
return 0;
}
|