Playing with prime numbers and rust
| src | WIP | |
| .gitignore | Sorting gitignore | |
| Cargo.toml | WIP | |
| README.md | Sorting gitignore | |
Prime numbers up to n
I sort of set myself this kata as I'm slowly working my way through the Rust Book and fancied playing around with some of the things I've learned.
This takes a number (n) from the user and responds with both all the prime numbers from 0 to n, as well as
the nth prime number.
I built this following TDD, using Rust's in-built testing suite.