Merge pull request #213 from coltonhurst/master

Change example text in variables.go
This commit is contained in:
Mark McGranaghan
2019-05-30 06:33:58 -07:00
committed by GitHub

View File

@@ -28,7 +28,7 @@ func main() {
// The `:=` syntax is shorthand for declaring and
// initializing a variable, e.g. for
// `var f string = "short"` in this case.
f := "short"
// `var f string = "apple"` in this case.
f := "apple"
fmt.Println(f)
}