Hello World use Golang

WIth Golang, we can print text like “hello world” with simple code like this

package main

import "fmt"

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

With fmt pacakge, we can print text to console!.