hello world !!!

Print Hello World!!! to stdout in my programming languages.

Golang

package main

import "log"

func main() {
    log.Println("hello world !!!")
}