codebook 0.3.37

A code-aware spell checker library (dependency for codebook-lsp)
Documentation
1
2
3
4
5
6
7
8
9
fn calclate_user_age(birt_date: String, get_curent_date: String) -> String {
    // This is an example_function that calculates age
    let usr_age = format!("{}{}", get_curent_date, birt_date);
    usr_age
}

fn main() {
    calculat_user_age("hi".to_string(), "jalopin".to_string());
}