gobyexample/005-constants/constants.go
Mark McGranaghan 3474d39dc5 index work
2012-09-23 14:33:49 -07:00

16 lines
199 B
Go

// ## Constants
package main
import "fmt"
// Use `const` to declare a constant value.
// Constants can be ...
const x string = "Hello World"
func main() {
fmt.Println(x)
}
// todo: research