Go - Named Type
About
A type declaration makes it possible to give a name to an existing type.
Articles Related
Example
type Point struct{ X, Y int }
var p Point
A type declaration makes it possible to give a name to an existing type.
type Point struct{ X, Y int }
var p Point