minsung.cho 939777825f fix: remove ambiguous .into() example from strings4
The `"nice weather".into()` line could be solved with either
`string_slice` or `string`. The `string_slice` choice compiled and
passed the exercise while emitting a `clippy::useless_conversion`
warning, so the exercise could pass with a warning still present.

Understanding why `.into()` works for both targets requires the `From`
trait, which rustlings introduces later. Remove the example from the
exercise and solution.

Fixes #2190
2026-05-23 18:27:34 -07:00

36 lines
983 B
Rust

// Calls of this function should be replaced with calls of `string_slice` or `string`.
fn placeholder() {}
fn string_slice(arg: &str) {
println!("{arg}");
}
fn string(arg: String) {
println!("{arg}");
}
// TODO: Here are a bunch of values - some are `String`, some are `&str`.
// Your task is to replace `placeholder(…)` with either `string_slice(…)`
// or `string(…)` depending on what you think each value is.
fn main() {
placeholder("blue");
placeholder("red".to_string());
placeholder(String::from("hi"));
placeholder("rust is fun!".to_owned());
placeholder(format!("Interpolation {}", "Station"));
// WARNING: This is byte indexing, not character indexing.
// Character indexing can be done using `s.chars().nth(INDEX)`.
placeholder(&String::from("abc")[0..1]);
placeholder(" hello there ".trim());
placeholder("Happy Monday!".replace("Mon", "Tues"));
placeholder("mY sHiFt KeY iS sTiCkY".to_lowercase());
}