summaryrefslogtreecommitdiff
path: root/comp/lucas-standen-NEA/code/zpy/zpy.c
blob: 70d275747ccb2487c2ac5ba493492035fdd51183 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>

#include "../tokenizer/parser.h"
#include "../global/types.h"
#include "../global/util.h"

int main(int argc, char **argv){
	if (argc < 2) {
		printf("repl not yet implemented\n");
		Die();
	}
	parser(argv[1]);
	return 0;
}