Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 589 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 589 Bytes

Workspace Setup

  1. Verify go is working correctly go version
  2. Verify git is working correctly git --version
  3. Verify that your editor's go plugin is installed.
  4. "go get" a hello world program go get github.com/zevdg/2018-codemash-go/labs/00/hello
  5. cd to the directory cd $(go env GOPATH)/src/github.com/zevdg/2018-codemash-go/labs/00/hello
  6. edit it
  7. go run it go run hello.go
  8. go build it go build
  9. run the built executable ./hello
  10. go install it go install
  11. run the installed version $(go env GOPATH)/bin/hello

Bonus: print out an ascii picture