gitlink-cli/snippets/hello-cli.go

10 lines
86 B
Go

```go
package main
import "fmt"
func main() {
fmt.Println("Hello from CLI!")
}
```