Being able to specify arbitrary folders for libraries is a nice feature, but please don't use the comma to separate the items in a list of folders. Use the platform independent [os.PathListSeparator](http://golang.org/pkg/os/#pkg-constants) (`:` on unix, `;` on windows). Why? - every commadline tool I know of does it that way. Users expect to seperate different paths by their local path separator character - Go has a [function](http://golang.org/pkg/path/filepath/#example_SplitList) to split a list of folders based on the os.PathListSeparator constant Eberhard