made the help printouts look better(nut much better)

This commit is contained in:
Zastian Pretorius
2022-07-09 23:51:27 +01:00
parent ab733c27f9
commit 5c6947477f

View File

@@ -12,8 +12,9 @@ fn main() {
if std::env::args().len() > 1 { if std::env::args().len() > 1 {
_arg = std::env::args().nth(1).unwrap(); _arg = std::env::args().nth(1).unwrap();
} else { } else {
println!("argument a\t:anime"); println!("anime:\t\t{}",format!("{}","a".red()));
println!("argument l\t:light novel"); println!("light novel:\t{}",format!("{}","l".red()));
println!("you can add the name of the anime you want to watch after the {} argument",format!("{}","a".red()));
//kill the program //kill the program
std::process::exit(0); std::process::exit(0);
} }