go
type contact struct {
	name     string
	age      uint
	pronouns string
	face     [184][184][3]byte
	links    [6]string
	emails   [2]string
	location string
	phone    uint
}

info := contact {
	name:     "Zebadiah Long",
	age:      1234846916,        // In seconds
	pronouns: "he/him",
	face:     [184][184][3]byte{   },
	links:    [6]string{
		"noblewhale.com",    // Business site
		"AnsonKindred",      // Github
		"Noble Whale",       // Business Github
		"zeblong",           // LinkedIn
		"AnsonKindred",      // Steam
		"Resume",            // Resume
	},
	emails:   [2]string{
		"thegreatzebadiah@gmail.com",
		"zeb@noblewhale.com",
	},
	location: "Athens, GA. USA",
	phone:    7062014294,
}