2022-03-29 13:02:35 +00:00
|
|
|
// move_semantics6.rs
|
2023-05-29 17:39:08 +00:00
|
|
|
//
|
2022-07-12 13:43:26 +00:00
|
|
|
// You can't change anything except adding or removing references.
|
2023-05-29 17:39:08 +00:00
|
|
|
//
|
|
|
|
// Execute `rustlings hint move_semantics6` or use the `hint` watch subcommand
|
|
|
|
// for a hint.
|
2022-03-29 13:02:35 +00:00
|
|
|
|
|
|
|
// I AM NOT DONE
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let data = "Rust is great!".to_string();
|
|
|
|
|
|
|
|
get_char(data);
|
|
|
|
|
|
|
|
string_uppercase(&data);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should not take ownership
|
|
|
|
fn get_char(data: String) -> char {
|
|
|
|
data.chars().last().unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should take ownership
|
|
|
|
fn string_uppercase(mut data: &String) {
|
|
|
|
data = &data.to_uppercase();
|
|
|
|
|
|
|
|
println!("{}", data);
|
|
|
|
}
|