Simon Zimmermann

2009-11-25

Go

The Go programming language is fun

… go .. !

… that’s a good start.

package hello

import (
    "fmt";
    "io";
)

func SayHello(out io.Writer) {
     fmt.Fprintf(out, "hello, world\n")
}

It’s also learningful to play with it. Not everything is documented and you have to dig in the pkg src to find the right answers.

robotics github