Add support for random numbers, and prime generation and testing.

This commit is contained in:
2018-11-29 17:03:33 -08:00
parent 62e36d79cb
commit 60d7dd3af5
6 changed files with 276 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
#[cfg(test)]
#[macro_use]
extern crate quickcheck;
extern crate rand;
pub mod signed;
pub mod unsigned;