first_lib/
lib.rs

1pub fn table_function(mut table:u64,mut count_1:u64) {
2
3loop { 
4    count_1 = count_1 +1 ;
5    let add_number = table+table;
6    println!(" {} * {} = {}",table , count_1, add_number);
7    
8    if count_1 ==11  {
9        break
10    }
11
12} 
13}