29.Structs - Programming in GO

Posted on Apr 02, 2019   ∣  1 min read  ∣  GO

Structs

A struct is a collection of fields.

we are creating xy struct with X and Y fiels.

type xy struct {
	X string
	Y string
}

Go Program

package main

import "fmt"

type xy struct {
	X string
	Y string
}

func main() {
	fmt.Println(xy{"x", "y"})
}