pub static ARGS: &ArgsExpand description
The arguments passed to the application.
ยงExamples
Accessing each argument individually:
use ftkit::ARGS;
println!("{} arguments!", ARGS.len());
println!("name of the process: {}", &ARGS[0]);Using a for-loop:
use ftkit::ARGS;
for arg in ARGS {
println!("{arg}");
}