Ecosyste.ms: Awesome
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: 4 days ago
JSON representation
Go Language Examples
- Host: GitHub
- URL: https://github.com/denezt/golang-examples
- Owner: denezt
- License: unlicense
- Created: 2019-02-05T21:25:29.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-02-13T08:12:50.000Z (almost 3 years ago)
- Last Synced: 2024-06-21T16:53:42.348Z (5 months ago)
- Language: Go
- Homepage:
- Size: 21.5 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!")
}
```