rustutils-factor 0.1.0

Prime the prime factors of each specified integer number
Documentation
1
2
3
4
5
6
7
8
use clap::Parser;
use rustutils_factor::Factor;
use rustutils_runnable::Runnable;
use std::process::ExitCode;

fn main() -> ExitCode {
    Factor::parse().main()
}