vector_base 0.1.0

Vector base
Documentation
1
2
3
4
5
pub async fn get_word()->Option<String>{
    let mut buffer = String::new();
    std::io::stdin().read_line(&mut buffer).unwrap();
    Some(buffer.trim().to_string())
}