Created
September 3, 2022 20:25
-
-
Save devenes/ff863b90d890b579135f72f026600b8d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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