Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dynastymasra/golangexercise

Golang (Go Programming Language) exercise from basic
https://github.com/dynastymasra/golangexercise

Last synced: about 2 months ago
JSON representation

Golang (Go Programming Language) exercise from basic

Awesome Lists containing this project

README

        

# Golang Exercise
Golang (Go Programming Language) exercise from basic

can view in tour.golang

full documentation in golang.org

#### Golang workspaces
* bin/
* pkg/
* src/

#### GOPATH environment varibale
* $ export GOPATH=$HOME/go
* $ export PATH=$PATH:$GOPATH/bin

#### Import library
* mkdir $GOPATH/src/github.com/dynastymasra/package_name or library_name
* go build github.com/dynastymasra/package_name or library_name < This won't produce an output file
* go install github.com/dynastymasra/package_name or library_name