Update go.go

without `fmt` package, just pure println
This commit is contained in:
贾顺名(Jarvis)
2018-06-21 17:39:15 +08:00
committed by GitHub
parent 4b5ff1ef90
commit 74a50fa95c

View File

@@ -1,7 +1,5 @@
package main
import "fmt"
func main() {
fmt.Printf("Hello, 世界\n")
println("Hello, World")
}