We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47f7672 commit 101072aCopy full SHA for 101072a
1 file changed
exercises/quiz2.rs
@@ -17,14 +17,14 @@ fn string(arg: String) {
17
}
18
19
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());
+ ???("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());
+ ???("Happy Monday!".to_string().replace("Mon", "Tues"));
+ ???("mY sHiFt KeY iS sTiCkY".to_lowercase());
30
0 commit comments