Generate bits and booleans easily.
This example uses the default generator, but you can always make your own generator.
package main
import randbool "github.com/SolarSystems-Software/rand-bool"
func main() {
if randbool.Default.NextBool() {
// true
} else {
// false
}
}