Source file tour/basics/exported-names.go

     1  // +build no-build OMIT
     2  
     3  package main
     4  
     5  import (
     6  	"fmt"
     7  	"math"
     8  )
     9  
    10  func main() {
    11  	fmt.Println(math.pi)
    12  }
    13  

View as plain text