Skip to content

Instantly share code, notes, and snippets.

View clakech's full-sized avatar
🪲

Cyril Lakech clakech

🪲
View GitHub Profile
@clakech
clakech / exercise.tour.go
Last active August 29, 2015 14:26 — 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.)