Samples
Samples
type-inference
Language: Gold, Platform: Echoes, Category: Tour of Go
https://github.com/remobjects/ElementsSamples/tree/master/Gold/Echoes/Tour of Go/type-inference
-
type-inference.Echoes
-
References
- #
- Source Files
-
Other Files
-
References
type-inference.go
// Ignored build directive: +build OMIT
package main
import "fmt"
func main() {
v := 42 // change me!
fmt.Printf("v is of type %T\n", v)
}
