initial commit - added base, need to fix templ errors
This commit is contained in:
32
posts/hello.md
Normal file
32
posts/hello.md
Normal file
@@ -0,0 +1,32 @@
|
||||
---
|
||||
title: "Hello, Forge"
|
||||
date: "2025-08-17"
|
||||
excerpt: "The Hammer Strikes..."
|
||||
draft: false
|
||||
---
|
||||
|
||||
# Hello, Forge
|
||||
|
||||
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)
|
||||
}
|
||||
```
|
Reference in New Issue
Block a user