Go: Difference between revisions

From Omnia
Jump to navigation Jump to search
 
 
(One intermediate revision by the same user not shown)
Line 7: Line 7:
Issues:
Issues:
* Name "Go" is ungoogable / hastagable (use golang) *** MOST ANNOYING ***
* Name "Go" is ungoogable / hastagable (use golang) *** MOST ANNOYING ***
== Go Version ==
go version


== Hello World ==
== Hello World ==
Line 24: Line 28:


  https://go.dev/
  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 ==
== keywords ==


[[Category:Go]]
[[Category:Go]]

Latest revision as of 08:48, 30 April 2026

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