Logo

Programming-Idioms

History of Idiom 5 > diff from v349 to v350

Edit summary for version 350 by :
Two fields on one line, +demo

Version 349

2015-11-18, 15:55:39

Version 350

2015-11-18, 15:56:29

Idiom #5 Create a 2D Point data structure

Declare a container type for two floating-point numbers x and y

Idiom #5 Create a 2D Point data structure

Declare a container type for two floating-point numbers x and y

Code
type Point struct {
    x float64
    y float64
}
Code
type Point struct {
    x, y float64
}
Demo URL
http://play.golang.org/p/CkmxNoBejE