Merge pull request #504 from Ant0wan/quiz2_markers

fix(exercises): adding question mark to quiz2
pull/506/head
fmoko 4 years ago committed by GitHub
commit 70da09eae2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -17,14 +17,14 @@ fn string(arg: String) {
} }
fn main() { fn main() {
("blue"); ???("blue");
("red".to_string()); ???("red".to_string());
(String::from("hi")); ???(String::from("hi"));
("rust is fun!".to_owned()); ???("rust is fun!".to_owned());
("nice weather".into()); ???("nice weather".into());
(format!("Interpolation {}", "Station")); ???(format!("Interpolation {}", "Station"));
(&String::from("abc")[0..1]); ???(&String::from("abc")[0..1]);
(" hello there ".trim()); ???(" hello there ".trim());
("Happy Monday!".to_string().replace("Mon", "Tues")); ???("Happy Monday!".to_string().replace("Mon", "Tues"));
("mY sHiFt KeY iS sTiCkY".to_lowercase()); ???("mY sHiFt KeY iS sTiCkY".to_lowercase());
} }

Loading…
Cancel
Save