/primes

Generate multiplication table for prime numbers.

Primary LanguageRuby

Primes Coding challenge

###Objective Write a program that prints a multiplication table of primes numbers.

The program should take an argument from the command line that specifies the amount of prime numbers to generate and print out a multiplication table for these prime numbers.

An example of the way the application may run:

<executable_script_name> --­­count 10

Multiplication Table Image

###Usage

cd /root/of/this/project
./primes --count n # where n is the number of prime-numbers you want generated

e.g: ./primes --count 10

Multiplication Table Image