Skip to content

Instantly share code, notes, and snippets.

View kareemdjames's full-sized avatar

Kareem James kareemdjames

View GitHub Profile
@tetsuok
tetsuok / answer_exercise_gotour.go
Created April 2, 2012 01:58
An answer of the exercise: Loops and Functions on a tour of Go
package main
import (
"fmt"
"math"
)
const Delta = 0.0001
func isConverged(d float64) bool {