Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/denezt/golang-examples

Go Language Examples
https://github.com/denezt/golang-examples

Last synced: 4 days ago
JSON representation

Go Language Examples

Awesome Lists containing this project

README

        

Golang Examples
==

* loops
* main
* parsers
* oop

``` go
// Example Basic Lines of Code
package main
import "fmt"
func main () {
fmt.Println("Hello World!")
}
```