docs: update README.md
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Dan Anglin 2023-05-13 23:22:05 +01:00
parent bf2d71a7be
commit c036319fc6
Signed by: dananglin
GPG key ID: 0C1D44CFBEE68638

View file

@ -18,25 +18,23 @@ The project's avatar was made by [Smashicons](https://www.flaticon.com/authors/s
## Build ## Build
``` ```
$ go build -o greet . go build -o greet .
``` ```
## Run ## Run
Greet the world. Greet the world.
``` ```
$ ./greet ./greet
Hello, World!
``` ```
Greet a person. Greet a person.
``` ```
$ ./greet Bob ./greet Bob
Hello, Bob!
``` ```
## Run Dagger Pipeline locally ## Run Dagger Pipeline locally
``` ```
$ pushd internal/build && go run . && popd pushd internal/build && go run . && popd
``` ```