gobyexample/006-constants/constants.go
2012-09-23 12:11:48 -04: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