mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
819 B
819 B
borrow
Instructions
Complete the signature and the body of the str_len
function that receives a string or a string literal and returns its length without taking ownership of the value (i.e, borrowing the value).
Expected Function (The signature needs to be completed)
pub fn str_len(s: ) -> usize {
}
Notions
Usage
Here is a possible program to test your function :
fn main() {
let s = "hello";
let s1 = "camelCase".to_string();
println!("\tstr_len(\"{}\") = {}", s, str_len(s));
println!("\tstr_len(\"{}\") = {}", s1, str_len(&s1));
}
And its output:
student@ubuntu:~/[[ROOT]]/test$ cargo run
str_len("hello") = 5
str_len("camelCase") = 9
student@ubuntu:~/[[ROOT]]/test$