Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 347 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 347 Bytes

learning go

Based on: Learning Go

First steps

  1. Set GOPATH:
	export GOPATH=$(pwd)
	export PATH=$PATH:$GOPATH/bin
  1. go run <file.go>

Install deps

Go uses the repository itself, there is no dependency manager

go install github.com/rakyll/hey@latest