From 8ce3808e8a8dab59a001b2a7c303d02daf9bdade Mon Sep 17 00:00:00 2001 From: Darren Coxall Date: Sun, 18 Jan 2015 09:00:29 +0000 Subject: [PATCH] Println instead of Printf This has been annoying me so I decided to change it. --- src/hello/hello.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hello/hello.go b/src/hello/hello.go index c2fbf9c..635db7a 100644 --- a/src/hello/hello.go +++ b/src/hello/hello.go @@ -3,5 +3,5 @@ package main import "fmt" func main() { - fmt.Printf("hello, world\n") + fmt.Println("hello, world") }