You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes, that is the point of the exercise. To see the error when you run it with the lower case version and then see the correct running when changed to upper case.
To fix the error, rename math.pi to math.Pi and try it again.
Context: http://127.0.0.1:3999/tour/basics/3
Change the title above to describe your issue and add your feedback here, including code if necessary
package main
should be:
import (
"fmt"
"math"
)
func main() {
fmt.Println(math.Pi)
}
The text was updated successfully, but these errors were encountered: