From 61c46e49df2ea1d01e093e4d0ee55733f087af6f Mon Sep 17 00:00:00 2001 From: Trivernis Date: Thu, 13 Feb 2020 09:18:45 +0100 Subject: [PATCH] Initial commit --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..3d14457 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# Primes with rust + +A simple program that calculates prime numbers with multithreading. The resulting numbers are written to stdout and to the file primes.txt. + +## Usage + +```bash +# compile +cargo build --release + +# run +./target/release/primes [] +``` \ No newline at end of file