31 lines
535 B
Markdown
31 lines
535 B
Markdown
---
|
|
title: "Hello, Forge"
|
|
date: "2025-08-17"
|
|
excerpt: "The Hammer Strikes..."
|
|
draft: 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.
|
|
|
|
```go
|
|
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)
|
|
}
|
|
```
|