Samples
Samples
structs
Language: Gold, Platform: Echoes, Category: Tour of Go
https://github.com/remobjects/ElementsSamples/tree/master/Gold/Echoes/Tour of Go/structs
-
structs.Echoes
-
References
- #
- Source Files
-
Other Files
-
References
structs.go
// Ignored build directive: +build OMIT
package main
import "fmt"
type Vertex struct {
X int
Y int
}
func main() {
fmt.Println(Vertex{1, 2})
}
