Skip to content

Instantly share code, notes, and snippets.

@ryupold
Created October 30, 2018 18:31
Show Gist options
  • Save ryupold/a861b077514ec9bbd02ec97390b79e88 to your computer and use it in GitHub Desktop.
Save ryupold/a861b077514ec9bbd02ec97390b79e88 to your computer and use it in GitHub Desktop.
//go build -ldflags -Hwindowsgui
package main
import (
"os/exec"
)
func main() {
cmd := exec.Command("procexp.exe")
err := cmd.Start()
if err != nil {
panic(err)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment