Skip to content

waleedsamy/letsgo

Repository files navigation

let's go

GO hello world based on https://golang.org/doc/code.html

Note: user in github url mean your username(I use mine).

steps

# update your ~/.bashrc
export GOPATH=$HOME/code/go
export PATH=$PATH:$GOPATH/bin

# now you create a project hello
mkdir -p $GOPATH/src/github.com/user/letsgo

# start write your go code
cd $GOPATH/src/github.com/user/letsgo && touch hello.go

build, install and run

go install
go run . -config.file let.yaml
curl http:https://localhost:8080/baz

push to github

cd $GOPATH/src/github.com/user/letsgo
git init
git add --all && git commit -am "Hello GO"
git remote add origin [email protected]:user/letsgo.git
git push origin master

Releases

No releases published

Packages

No packages published