more consistent case

This commit is contained in:
Mark McGranaghan
2012-10-17 17:22:24 -07:00
parent 5b906cd049
commit fdf2b6dbce
8 changed files with 18 additions and 19 deletions

View File

@@ -6,7 +6,7 @@ package main
import "fmt"
// Use `const` to declare a constant value.
const s string = "Constant"
const s string = "constant"
func main() {
fmt.Println(s)

View File

@@ -1,3 +1,2 @@
$ go run constant.go
Constant
constant