Files
blog/posts/hello.md

535 B

title, date, excerpt, draft
title date excerpt draft
Hello, Forge 2025-08-17 The Hammer Strikes... false

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.

type Valentine struct {
  Age int
  Hobbies []string
  Job string
}

func main() {
  valentine := Valentine{
    Age: 32,
    Hobbies: []string{"Lifting heavy things", "Walking Dwight", "Writing Go"},
    Job: "Senior Software Engineer",
  }

  fmt.Sprintf("%+v\n", valentine)
}