Newer
Older
# Fermat Primality Test
This small go program tests numbers for primality using the fermat primality test.
## Getting started
Simply start the program with:
```bash
go run cmd/fermatprimalitytest/main.go
```
## Acknoledgements
The ci pipeline is based on [onniegane.kiwi](https://ronniegane.kiwi/blog/2019/06/18/go-gitlab/)s example.