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

https://github.com/imotd/go-basic

Learn Go
https://github.com/imotd/go-basic

golang

Last synced: 2 months ago
JSON representation

Learn Go

Awesome Lists containing this project

README

          

# Learn Go

## Key

- go run - code menjalankan code
- go build - ngebuild code ex:.exe
- source ~/.profile
- package main (executable)
- library non main
- function dengan huruf Kapital = Akses Public
- sprintf - mengembalikan string
-%s - string
-%d - angka
- println - mencetak sebuah string
- import - memanggil standar library golang, pacakge custom(sendiri),pihak ke-3
- funt main() - method khusu di package main

### Note