4 lines
87 B
Text
4 lines
87 B
Text
fn main(){
|
|
let len = String::from("Hello world").len();
|
|
println!("{}", len);
|
|
}
|