Welcome.

This is my home.

A place to show you all the things, write some code, and explore new features of Go and other languages I enjoy writing.

 1type Valentine struct {
 2  Age int
 3  Hobbies []string
 4  Job string
 5}
 6
 7func main() {
 8  valentine := Valentine{
 9    Age: 32,
10    Hobbies: []string{"Lifting heavy things", "Walking Dwight", "Writing Go"},
11    Job: "Senior Software Engineer",
12  }
13
14  fmt.Sprintf("%+v\n", valentine)
15}