fn main() { let hello = "hello"; println!("size of {} : {}", hello, hello.len()); let helloRussian = "Привет"; println!("size of {} : {}", helloRussian, helloRussian.len()) } size of hello : 5 size of Привет : 12