Talk Golang

  • Home
  • Tags
  • Categories
  • Search
  • Table of Contents
  • Overview

Talk Golang

14 categories
38 tags
Twitter
0%

Hello Golang

Posted on 2021-04-29 Edited on 2021-05-01 In Get Started Reading time ≈ 1 mins.

It’s simple to write a hello world first program in go

1
2
3
4
5
6
7
package main

import "fmt"

func main(){
fmt.Println("Hello World!")
}
golang get started hello world
Hello World
Variables
© 2018 – 2022 Talk Golang
Reading time total ≈ 40 mins.