Skip to content

Instantly share code, notes, and snippets.

@devenes
Created September 3, 2022 20:25
Show Gist options
  • Save devenes/ff863b90d890b579135f72f026600b8d to your computer and use it in GitHub Desktop.
Save devenes/ff863b90d890b579135f72f026600b8d to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"github.com/pbnjay/memory"
)
func main() {
fmt.Printf("Total system memory: %d GB\n", memory.TotalMemory()/1024/1024/1024)
fmt.Printf("Total free memory: %d MB\n", memory.FreeMemory()/1024/1024)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment