2012-10-17 17:22:24 -07:00

14 lines
218 B
Go

// Go supports _constants_ of character, string, boolean,
// and numeric values.
package main
import "fmt"
// Use `const` to declare a constant value.
const s string = "constant"
func main() {
fmt.Println(s)
}