summaryrefslogtreecommitdiff
path: root/comp/lucas-standen-NEA/code/execution/exec.c
blob: 2b6b2022e26195a4f3e96ba23de0a5a23e00660a (plain)
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;
}