Constants



examples/const/const.go
package main

import (
    "fmt"
)

const pi float32 = 3.14

func main() {
    fmt.Println(pi)
}

3.14