YouTip LogoYouTip

Go Tutorial - Hello World

Hello World

package main

import "fmt"

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

Variables

name := "Alice"     // short declaration
var age int = 25    // explicit
x, y := 1, 2       // multiple

Summary

  • Go compiles to a single binary
  • Short declaration := is preferred inside functions
← Go Functions and Error HandlinC++ STL and Templates β†’