wget https://dl.google.com/go/go1.17.linux-amd64.tar.gz
sudo tar -xvf go1.17.linux-amd64.tar.gz
sudo mv go /usr/local
sudo ln -s /usr/local/go/bin/* /usr/bin
rm go1.17.linux-amd64.tar.gz
package main
import "fmt"
func main()
{
fmt.Println("hello world")
}
package main
import "fmt"
func main() {
fmt.Println("Hello Nerds!")
}
// Output: Hello Nerds!
Gopack CLI is instant package downloader for Go Programming,
if you use Gopack CLI you can download your favorite package library
with very easy, just play the keyboard and select the package you need,
wait a while until your package is installed and Gopack CLI
also supports installing multiple modules at the same time.
npm i gopack-cli -g
package main
import "fmt"
func main() {
fmt.Println("hello world")
}
is an open source programming language.
# install cli database in archlinux
yay -S migrate # migration cli
yay -S sqlc # sqlc cli
package main
import "fmt"
func main() {
fmt.Println("hello, world")
}
$ cd src
$ ./all.bash
package main
import (
"fmt"
)
func main() {
fmt.Println(`
Golang is a statically typed language loved
by scientists and researchers, developed by
Google.`)
}