learnlytics-go/templ/examples/hello-world-static/main.go
2025-03-20 12:35:13 +01:00

12 lines
138 B
Go

package main
import (
"context"
"os"
)
func main() {
component := hello("John")
component.Render(context.Background(), os.Stdout)
}