aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
blob: 431d8a516ee2340a52646f0c9bfb075bd25665e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include <parse.h>
#include <term.h>

int main(void)
{
	struct term *term = parse("([[((0 1) [(1 0)])]] [0])");
	print_term(term);
	free_term(term);
	return 0;
}