I\'ve been looking on golang.org for a Windows compiler, but I can\'t seem to find it. I can only see Linux and OS X compilers. Does anyone know if Go programming can be don
There are now installers for Windows, see Go under Windows
HelloWorld.go
package main func main() { println("Hello World!"); }
Compile with 8g, link with 8l and then execute. Example:
8g
8l
8g HelloWorld.go 8l -o HelloWorld.exe HelloWorld.8 HelloWorld