Sign in
go
/
tour
/
2e616b842c1127f0f4f1e49fcf2765d347bcaea1
/
.
/
content
/
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)
}