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

#include <parse.h>
#include <term.h>

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