2020-05-19 16:47:44 +00:00
|
|
|
// quiz2.rs
|
|
|
|
// This is a quiz for the following sections:
|
2019-11-11 12:46:42 +00:00
|
|
|
// - Strings
|
2019-01-23 19:48:01 +00:00
|
|
|
|
2020-05-13 10:38:14 +00:00
|
|
|
// Ok, here are a bunch of values-- some are `String`s, some are `&str`s. Your
|
2019-11-11 12:46:42 +00:00
|
|
|
// task is to call one of these two functions on each value depending on what
|
|
|
|
// you think each value is. That is, add either `string_slice` or `string`
|
|
|
|
// before the parentheses on each line. If you're right, it will compile!
|
2015-09-20 22:31:41 +00:00
|
|
|
|
2019-11-11 12:38:24 +00:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2019-11-11 12:46:42 +00:00
|
|
|
fn string_slice(arg: &str) {
|
|
|
|
println!("{}", arg);
|
|
|
|
}
|
|
|
|
fn string(arg: String) {
|
|
|
|
println!("{}", arg);
|
2015-09-20 22:31:41 +00:00
|
|
|
}
|
|
|
|
|
2019-11-11 12:46:42 +00:00
|
|
|
fn main() {
|
2020-08-25 14:38:41 +00:00
|
|
|
???("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());
|
2015-09-20 22:31:41 +00:00
|
|
|
}
|