rustlings/exercises/move_semantics/move_semantics6.rs

28 lines
530 B
Rust
Raw Normal View History

// move_semantics6.rs
//
// You can't change anything except adding or removing references.
//
// Execute `rustlings hint move_semantics6` or use the `hint` watch subcommand
// for a hint.
fn main() {
let data = "Rust is great!".to_string();
2023-11-02 05:35:19 +00:00
get_char(&data);
2023-11-02 05:35:19 +00:00
string_uppercase(data);
}
// Should not take ownership
2023-11-02 05:35:19 +00:00
fn get_char(data: &String) -> char {
data.chars().last().unwrap()
}
// Should take ownership
2023-11-02 05:35:19 +00:00
fn string_uppercase(mut data: String) {
data = data.to_uppercase();
println!("{}", data);
}