Hello world

First post created with Hugo.

Since I like go, here is some go code.

1
2
3
4
5
6
7
package main

import "os"

func main() {
	os.Stdout.WriteString("Hello world\n")
}

Build and run:

1
2
3
$ go build -o hello_world
$ ./hello_world
Hello world

I created a page for all kind of information about go called go notes.