Skip to content

Commit 70da09e

Browse files
author
fmoko
authored
Merge pull request #504 from Ant0wan/quiz2_markers
fix(exercises): adding question mark to quiz2
2 parents 47f7672 + 101072a commit 70da09e

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

exercises/quiz2.rs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ fn string(arg: String) {
1717
}
1818

1919
fn main() {
20-
("blue");
21-
("red".to_string());
22-
(String::from("hi"));
23-
("rust is fun!".to_owned());
24-
("nice weather".into());
25-
(format!("Interpolation {}", "Station"));
26-
(&String::from("abc")[0..1]);
27-
(" hello there ".trim());
28-
("Happy Monday!".to_string().replace("Mon", "Tues"));
29-
("mY sHiFt KeY iS sTiCkY".to_lowercase());
20+
???("blue");
21+
???("red".to_string());
22+
???(String::from("hi"));
23+
???("rust is fun!".to_owned());
24+
???("nice weather".into());
25+
???(format!("Interpolation {}", "Station"));
26+
???(&String::from("abc")[0..1]);
27+
???(" hello there ".trim());
28+
???("Happy Monday!".to_string().replace("Mon", "Tues"));
29+
???("mY sHiFt KeY iS sTiCkY".to_lowercase());
3030
}

0 commit comments

Comments
 (0)