16 lines
455 B
Markdown
16 lines
455 B
Markdown
|
# Golang Prime Numbers Package
|
||
|
|
||
|
A bunch of helper functions for dealing with small prime numbers that would fit in an unsigned integer.
|
||
|
|
||
|
This isn't a serious scientifically minded package, or heavily optimized, it's just a quick and dirty tool
|
||
|
for grabbing prime numbers should you find yourself needing them.
|
||
|
|
||
|
## Installation
|
||
|
|
||
|
```bash
|
||
|
go get smariot.com/prime
|
||
|
```
|
||
|
|
||
|
## Documentation
|
||
|
|
||
|
You can find the documentation at https://pkg.go.dev/smariot.com/prime.
|