Sign in
go
/
website
/
2c92ff85656e055c20cfca3a292f104f926022a1
/
.
/
_content
/
tour
/
basics
/
constants.go
blob: a5114334736e98bea159c55076d36d2028001b6d [
file
] [
log
] [
blame
]
//go: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)
}