fix(exercises): adding question mark to quiz2

Question marks added for consistency.

closes #496
This commit is contained in:
Antoine Barthelemy 2020-08-25 16:38:41 +02:00
parent 47f7672c03
commit 101072ab9f
1 changed files with 10 additions and 10 deletions

View File

@ -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());
} }