added menu

This commit is contained in:
SKYICE01
2022-07-29 00:33:34 +02:00
parent 7f34f62f5d
commit 17beee8f1d

View File

@@ -67,7 +67,15 @@ fn main() {
print_help();
}
if anime == false && ln == false {
print_help();
println!("1: Anime");
println!("2: Light Novel");
let a = int_input("pick your poison rip hh");
match a{
1 => anime = true,
2 => ln = true,
_=>println!("invalid option no hentai here")
};
}
if anime == true && ln == true {
println!("you can only use one of the arguments at a time");