Welcome to my blog. This is the first post.

Here’s some code to prove syntax highlighting works:

package main

import "fmt"

func main() {
    fmt.Println("Hello, world!")
}

And some Python:

def greet(name: str) -> str:
    return f"Hello, {name}!"

print(greet("world"))