rustutils-seq 0.1.0

Print numbers from first to last, in steps of increment
Documentation
1
2
3
4
5
6
7
8
use clap::Parser;
use rustutils_runnable::Runnable;
use rustutils_seq::Seq;
use std::process::ExitCode;

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