greet/README.md

468 B

Greetings

Summary

Greet is a simple Go CLI application that greets a recipient. This is a simple project used for the purpose of testing upcoming automation, such as CI/CD integration and dependency management, which will be used by other projects hosted in Code Flow.

Requirements

Build

$ go build -o greet .

Run

Greet the world.

$ ./greet
Hello, World!

Greet a person.

$ ./greet Bob
Hello, Bob!