Create a String with the value "Rustacean" and print its length.
String
"Rustacean"
Expected output:
9
Hints:
String::from("Rustacean")
.len()
println!