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

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

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!"
```