Add some more common String/&str idioms

pull/18/head
Carol (Nichols || Goulding) 9 years ago
parent 7af29d6211
commit dbad16021c

@ -10,6 +10,8 @@ fn main() {
("blue");
("red".to_string());
(String::from("hi"));
("rust is fun!".to_owned());
("nice weather".into());
(format!("Interpolation {}", "Station"));
(&String::from("abc")[0..1]);
(" hello there ".trim());

Loading…
Cancel
Save