diff --git a/go.html.markdown b/go.html.markdown index 5a9214b0..2a3fae8e 100644 --- a/go.html.markdown +++ b/go.html.markdown @@ -190,6 +190,7 @@ func learnMemory() (p, q *int) { return &s[3], &r // & takes the address of an object. } +// Use the aliased math library (see imports, above) func expensiveComputation() float64 { return m.Exp(10) }