📒
LearnGo
CtrlK
  • Installation guide Go (window 10)
  • Go concepts
  • Data types and Type Conversion
  • Getting Started With Go
  • Go build
  • Basics types in Go
  • Conditions / Loops
  • sequences and iteration
  • Functions
  • Pointers
  • Structures in Go
  • Methods in Go
  • Interface in Go
  • Error
  • Multi_threading in Go
  • Built-in packages
    • os pkg
    • io pkg
  • Docker with Golang
  • How to Guide
    • Create a package in go
    • Upload package to GitHub
    • Import package (third party) from GitHub
Powered by GitBook
On this page

Was this helpful?

Getting Started With Go

Printing hello world and code explanation

Hello Hello!

package main

import "fmt"

func main() {
    fmt.Println("hello hello")
}

PreviousData types and Type ConversionNextGo build

Last updated 4 years ago

Was this helpful?