feat: Add move_semantics6.rs exercise (#908)

This commit is contained in:
Lucas Aries
2022-03-29 15:02:35 +02:00
committed by GitHub
parent c80ad089fd
commit 3f0e1303e0
2 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
// move_semantics6.rs
// Make me compile! `rustlings hint move_semantics6` for hints
// You can't change anything except adding or removing references
// 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);
}