nix-openclaw/examples/hello-world-plugin/main.go
2026-01-03 21:42:41 +01:00

16 lines
278 B
Go

package main
import (
"fmt"
"os"
)
func main() {
name := os.Getenv("CLAWDIS_USER")
if name == "" {
name = "human"
}
fmt.Printf("Hello, %s. I am a very serious assistant.\n", name)
fmt.Println("Fun fact: this plugin does one thing, and it does it with conviction.")
}