Go

From Omnia
Revision as of 08:48, 30 April 2026 by Kenneth (talk | contribs) (→‎Ungoogable)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Stub for Go programming language

Ungoogable

https://www.google.com/search?q=golang

Issues:

  • Name "Go" is ungoogable / hastagable (use golang) *** MOST ANNOYING ***

Go Version

go version

Hello World

// Hello World
package main

import "fmt"

func main() {
	fmt.Println("Hello, world")
}

Online Go Editor and Runner

https://go.dev/

Install

Ubuntu

Standard version:

sudo apt update
sudo apt install golang-go

Latest via PPA:

sudo add-apt-repository ppa:longsleep/golang-backports
sudo apt update
sudo apt install golang-go

Via SNAP:

sudo snap install go --classic

keywords