A simple “Hello World!” example in ‘Go’, with simple scripts to record the associated commands.
## Build Instructions
go.mod
file already included in the repo but if you want to start from scratch, using only the source code, then initalize ‘Go’ build environment.$ go mod init example/hello
$ go build src/helloworld.go
$ cd src
$ go run .
or
$ ./helloworld