The Simplest Go Example

From NovaOrdis Knowledge Base
Revision as of 20:10, 15 December 2023 by Ovidiu (talk | contribs) (Created page with "=Internal= * Go Engineering =Overview= The simples way to get experimenting with Go code is to install Go and then: * Create a director...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Internal

Overview

The simples way to get experimenting with Go code is to install Go and then:

  • Create a directory (gotest).
  • In that directory, create a main.go file with this content:
package main

func main() {
  println(".")
}