From ef98db29671c37b20e9bab182ac237932cbfb958 Mon Sep 17 00:00:00 2001 From: Brian Buller Date: Tue, 19 Dec 2017 08:05:29 -0600 Subject: [PATCH] Disable printing. I broke it --- 2017/day19/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2017/day19/main.go b/2017/day19/main.go index 55dd559..c84c483 100644 --- a/2017/day19/main.go +++ b/2017/day19/main.go @@ -28,6 +28,8 @@ func main() { // Grab the window size if len(os.Args) > 1 { if os.Args[1] == "-print" { + fmt.Println("Not working right now... Sorry.") + os.Exit(1) printMap = true } } @@ -77,8 +79,6 @@ func main() { PrintStatus() } fmt.Println("Ctrl+C to Quit") - for { - } } func GetNodesAsString(nodes []byte) string {