Skip to content
Snippets Groups Projects
README.md 336 B
Newer Older
Jannik Bendfeld's avatar
Jannik Bendfeld committed
# 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.