Skip to content

Instantly share code, notes, and snippets.

@gaobocn-zz
gaobocn-zz / exercise.tour.go
Created June 11, 2017 13:33 — forked from zyxar/exercise.tour.go
tour.golang exercise solutions
/* Exercise: Loops and Functions #43 */
package main
import (
"fmt"
"math"
)
func Sqrt(x float64) float64 {
z := float64(2.)