How to Check for Prime Numbers Using Golang

If you need to check for Prime Numbers in Golang, then you can use the following method:

const n = 1212121
if big.NewInt(n).ProbablyPrime(0) {
  fmt.Println(n, "is prime")
} else {
  fmt.Println(n, "is not prime")
}