You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
here is the damn code hope i make it official in the new update
fn input() -> String{
print!(":");
io::stdout().flush().expect("");
let mut a = String::new();
io::stdin()
.read_line(&mut a)
.expect("error");
a.trim().to_string()
}