diff --git a/README.md b/README.md index c75c77c..8ac657a 100644 --- a/README.md +++ b/README.md @@ -1 +1,17 @@ -primes +# Primes with go + +A simple program that calculates prime numbers with multithreading. +The resulting numbers are written to stdout and to the file primes.txt. + +## Usage + +```sh +# compile +go build primes.go + +# executable +chmod +x ./primes + +# run +./primes [] +```