Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/dynastymasra/golangexercise
- Owner: dynastymasra
- Created: 2015-05-04T02:50:21.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-02-06T06:21:04.000Z (almost 6 years ago)
- Last Synced: 2023-03-14T08:10:25.418Z (almost 2 years ago)
- Language: Go
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Golang Exercise
Golang (Go Programming Language) exercise from basiccan 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