func processes() ([]Process, error) {
.... (SOME CODE)
return results, nil <----------- this return
}
I need take the first value of these return here.
And add it to this func, in the p value.
func PrintProcesses() {
var p []ps.Process
}