From b0f362f6ec073ca9afff5b8f7f8e9fd0688c03ae Mon Sep 17 00:00:00 2001 From: MsK` Date: Mon, 6 Dec 2021 14:11:24 +0100 Subject: [PATCH] fixed text --- day-6/code.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/day-6/code.scm b/day-6/code.scm index 02d0e99..54b1687 100644 --- a/day-6/code.scm +++ b/day-6/code.scm @@ -66,5 +66,5 @@ (let [(input (read-comma-separated-numbers file))] (printf "part 1:~% count after 80 days: ~a~%" (simulate-growth input 80)) - (printf "part 1:~% count after 256 days: ~a~%" + (printf "part 2:~% count after 256 days: ~a~%" (simulate-growth input 256)))))