claudiofsr_lib 0.19.8

General-purpose library used by my programs
Documentation
/*
    cargo test
    cargo test -- --show-output unique_values
    cargo test -- --show-output SkipBack skip
    cargo test --features decimal,fast-lines -- --show-output
    cargo test --all-features
    cargo run --features decimal,fast-lines
    cargo clippy
    cargo doc --open
    cargo b -r && cargo install --path=.
    cargo b -r && cargo install --path=. --features decimal,fast-lines
*/

const NAME: &str = env!("CARGO_PKG_NAME");
const VERSION: &str = env!("CARGO_PKG_VERSION");

fn main() {
    println!("{NAME}");
    println!("version {VERSION}");
}