blob: 024cc7a205e421a7d7568bf40ddbb0e0f26bf901 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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;
}
|