Browse Source

Fix bad call to Println

master
Nicolas Massé 9 years ago
parent
commit
3aee878447
  1. 2
      test/test-app/main.go

2
test/test-app/main.go

@ -10,7 +10,7 @@ const (
)
func HelloWorld(w http.ResponseWriter, r *http.Request) {
fmt.Println(w, "Hello, world !")
fmt.Fprintln(w, "Hello, world !")
}
func main() {

Loading…
Cancel
Save