Println instead of Printf

This has been annoying me so I decided to change it.
This commit is contained in:
Darren Coxall
2015-01-18 09:00:29 +00:00
parent fcda936559
commit 8ce3808e8a

View File

@@ -3,5 +3,5 @@ package main
import "fmt" import "fmt"
func main() { func main() {
fmt.Printf("hello, world\n") fmt.Println("hello, world")
} }