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,12 @@
// Example code for Chapter 1.2 from "Build Web Application with Golang"
// Purpose: Shows how to create a simple package called `mymath`
// This package must be imported from another go file to run.
package mymath
func Sqrt(x float64) float64 {
z := 0.0
for i := 0; i < 1000; i++ {
z -= (z*z - x) / (2 * x)
}
return z
}