Golang Hello world

Using Golang code example

package main

import "fmt"

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

Hello world!