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

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

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

Last synced: 5 months 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!")
}
```