greet is a simple Go program that greets a recipient, or the world.
Find a file
2021-08-29 15:36:09 +01:00
.gitignore feat: add greet program and tests 2021-08-29 15:36:09 +01:00
go.mod feat: add greet program and tests 2021-08-29 15:36:09 +01:00
greet.go feat: add greet program and tests 2021-08-29 15:36:09 +01:00
greet_test.go feat: add greet program and tests 2021-08-29 15:36:09 +01:00
LICENSE Add LICENSE 2021-08-28 18:41:07 +00:00
README.md feat: add greet program and tests 2021-08-29 15:36:09 +01:00

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!