Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Latest commit

 

History

History

PrimeMultiplication.Cli

Command-line interface

This folder contains a .NET Core 3 console application project.

How to run

Print help and usage:

PrimeMultiplication.Cli -?

Generate a multiplication table of 10 primes:

PrimeMultiplication.Cli 10

Generate a multiplication table of 1000 primes or as many as you can in 1 millisecond:

PrimeMultiplication.Cli 1000 --timeout 1

Generate a multiplication table of 5000 primes in 5 seconds or die trying:

PrimeMultiplication.Cli 5000 --timeout 1 --throw-on-cancel