Poindexter/poindexter.go
copilot-swe-agent[bot] 195924fb9e Bootstrap Go library with EUPL-1.2, goreleaser, mkdocs, and sorting functions
Co-authored-by: Snider <631881+Snider@users.noreply.github.com>
2025-11-03 15:37:45 +00:00

15 lines
339 B
Go

// Package poindexter provides functionality for the Poindexter library.
package poindexter
// Version returns the current version of the library.
func Version() string {
return "0.1.0"
}
// Hello returns a greeting message.
func Hello(name string) string {
if name == "" {
return "Hello, World!"
}
return "Hello, " + name + "!"
}