go-tour/constants.go
2020-02-04 21:44:36 -06:00

15 lines
200 B
Go

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)
}