Samples
Samples
exported-names
Language: Gold, Platform: Echoes, Category: Tour of Go
https://github.com/remobjects/ElementsSamples/tree/master/Gold/Echoes/Tour of Go/exported-names
-
exported-names.Echoes
-
References
- #
- Source Files
-
Other Files
-
References
exported-names.go
// Ignored build directive: +build no-build OMIT
package main
import (
"fmt"
"math"
)
func main() {
fmt.Println(math.pi)
}
