Finished translation of Chapter 1 in pt-br

This commit is contained in:
James Miranda
2016-09-23 17:33:18 -03:00
parent 2b65ffe75a
commit bbbfb9ff8c
269 changed files with 16105 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
// Example code for Chapter ? from "Build Web Application with Golang"
// Purpose: Hello world example demonstrating UTF-8 support.
// To run in the console, type `go run main.go`
// You're missing language fonts, if you're seeing squares or question marks.
package main
import "fmt"
func main() {
fmt.Printf("Hello, world or 你好,世界 or καλημ ́ρα κóσμ or こんにちは世界\n")
}