From 36608f4e152ad8da9803164eb6c45d627379e1e5 Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Fri, 3 Dec 2021 19:58:22 +0100 Subject: [PATCH] Fixed typo in common --- 2021/common/aoc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2021/common/aoc.go b/2021/common/aoc.go index 483b2df..f8e7a14 100644 --- a/2021/common/aoc.go +++ b/2021/common/aoc.go @@ -34,7 +34,7 @@ func New(year int, day int) adventOfCode { func (aoc adventOfCode) Solution(f func(*bufio.Scanner) int) { if len(aoc.testCases) == 0 { - fmt.("No testCases provided!\n") + fmt.Println("No testCases provided!") } failed := false