Hacker News new | ask | show | jobs
by zerosanity 5362 days ago
Makefile fussing was driving me insane with Go. I was trying to build with directory local packages to keep bits of code separated cleanly and it was a pain to get working.

I discovered http://code.google.com/p/go-gb/ and haven't looked back. It makes building Go code SO much nicer. If I just want to try something quick in Go I just make a directory, place my whatever.go file in it, type 'gb', and run my program.

I really hope they make this 'go' tool as easy as 'gb'.