https://github.com/markcial/go-pro
Practical examples for a introductory presentation about go programming
https://github.com/markcial/go-pro
Last synced: 2 months ago
JSON representation
Practical examples for a introductory presentation about go programming
- Host: GitHub
- URL: https://github.com/markcial/go-pro
- Owner: Markcial
- License: mit
- Created: 2016-12-16T07:46:52.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-22T07:30:20.000Z (over 8 years ago)
- Last Synced: 2025-02-05T03:28:24.589Z (4 months ago)
- Language: Go
- Size: 10.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-pro
Practical examples for a introductory presentation about go programming
## Requirements
* Go 1.6 or newer
## How to run the samples
* Simply execute: `go run /main.go`
Example: `go run 01-helloworld/main.go`
## Build the example in a executable binary
* Run bo build: `go build -o -i /main.go`
Example:
```shell
go build -o hello 01-helloworld/main.go
./hello # outputs "Hello World!"
```