Hello World

Since the blog system is written in Go, let’s start with Go’s “Hello World”! package main import "fmt" func main() { fmt.Println("Hello World") }

March 31, 2026