I'm trying to search Google but the keyword 'go' makes it difficult to find any useful answers. Reading the http://golang.org/ page doesn't turn up anything useful either.
Right now, I have a simple function in my bash.rc:
function gogo() {
6g -o gotmp.tmp $@;
6l -o go.out gotmp.tmp;
rm -f gotmp.tmp;
}
However, this is not perfect. It would be nice for something built in (perhaps something like gogcc but using 6g/6l backend).
Thanks!