Sign in
go
/
website
/
fbf6bcf226e603eb6e7ddbb1e22c2b2a79db0148
/
.
/
_content
/
tour
/
basics
/
constants.go
blob: 21eb716cc4a135a9833718d86b637fc2c44282f2 [
file
] [
log
] [
blame
]
// +build OMIT
package main
import "fmt"
const Pi = 3.14
func main() {
const World = "世界"
fmt.Println("Hello", World)
fmt.Println("Happy", Pi, "Day")
const Truth = true
fmt.Println("Go rules?", Truth)
}