Is it possible to start a windows process from Google Go? I´m looking for a Go package that contains something similar to C# System.Process type, or some alternative method of achieving the same result.
Go has also a Process type. You can use the StartProcess function of the os package to create a new one. Alternatively, you can also use the Cmd struct of the os/exec package which is a bit easier to use.