go-tour/constants.go

15 lines
200 B
Go
Raw Normal View History

2020-02-05 03:44:36 +00:00
package main
import "fmt"
const Pi = 3.14
func main() {
const World = "world"
fmt.Println("Hello", World)
fmt.Println("Hello", Pi, "Day")
const Truth = true
fmt.Println("Go rules?", Truth)
}