learnlytics-go/templ/examples/hello-world-static/main.go

12 lines
138 B
Go
Raw Normal View History

2025-03-20 12:35:13 +01:00
package main
import (
"context"
"os"
)
func main() {
component := hello("John")
component.Render(context.Background(), os.Stdout)
}