Minor cleanup.

This commit is contained in:
Simon Forman 2023-02-01 20:34:49 -08:00
parent bb41bf619d
commit 288142c01a
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,6 @@ print_list(struct list_node* el)
printf(" ");
}
}
printf("\n");
}
@ -226,5 +225,6 @@ main(void)
el = push_integer_from_str("3141592653589793238462643383279502884", 0);
el->tail = text_to_expression(text);
print_list(el);
printf("\n");
return 0;
}