blob: 94d06525b2eff2a4f7ce276ea85f52ee62ac142b [file] [log] [blame]
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)
}