16 lines
278 B
Go
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.")
|
|
}
|