From 288142c01ac74d6b504b8dab10aa3f27a3df9b76 Mon Sep 17 00:00:00 2001 From: Simon Forman Date: Wed, 1 Feb 2023 20:34:49 -0800 Subject: [PATCH] Minor cleanup. --- implementations/C/joy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/implementations/C/joy.c b/implementations/C/joy.c index 17f5502..0ea7a83 100644 --- a/implementations/C/joy.c +++ b/implementations/C/joy.c @@ -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; } -- 2.11.0