Go: Hello World

Have you ever wondered how to write a "Hello World" application in go?
Here's your answer:

package main

import "fmt"

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

It's pretty cool, right?


Disclaimer: This is my first test blog post and it has no deeper meaning. It is for testing purposes only.