Source file tour/basics/constants.go

     1  // +build OMIT
     2  
     3  package main
     4  
     5  import "fmt"
     6  
     7  const Pi = 3.14
     8  
     9  func main() {
    10  	const World = "世界"
    11  	fmt.Println("Hello", World)
    12  	fmt.Println("Happy", Pi, "Day")
    13  
    14  	const Truth = true
    15  	fmt.Println("Go rules?", Truth)
    16  }
    17  

View as plain text