Hello World

Get started with Golang

Table of contents

No heading

No headings in the article.

This is the hello world program in golang

package main

import "fmt"

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