Skip to content

Instantly share code, notes, and snippets.

@changtimwu
Created May 29, 2015 08:04
Show Gist options
  • Save changtimwu/f1974bfa31070cead583 to your computer and use it in GitHub Desktop.
Save changtimwu/f1974bfa31070cead583 to your computer and use it in GitHub Desktop.
GO get sysinfo
package main
import "fmt"
import "golang.org/x/sys/unix"
func main() {
var si unix.Sysinfo_t
unix.Sysinfo( &si)
fmt.Println("Hello, playground", si)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment