diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -6,7 +6,9 @@ int main(void) { - struct term *term = parse("([[((0 1) [(1 0)])]] [0])"); + struct term *term = + parse("([((1 0) 0)] ([[([0] 0)]] [([(0 0)] [(0 0)])]))"); + // 1-2-6-1-1-4-9-3-1-2-6-2-5-7-1-2-6-3-4-5-11-5-10-9-4-8-10 print_term(term); printf("\nReduced:\n"); struct term *reduced = reduce(term); |