2024-07-04 07:38:35 -04:00
|
|
|
#![allow(clippy::ptr_arg)]
|
|
|
|
|
2024-06-21 12:29:00 -04:00
|
|
|
// TODO: Fix the compiler errors without changing anything except adding or
|
|
|
|
// removing references (the character `&`).
|
2021-05-17 08:10:40 -04:00
|
|
|
|
2024-06-21 12:14:19 -04:00
|
|
|
// Shouldn't take ownership
|
|
|
|
fn get_char(data: String) -> char {
|
|
|
|
data.chars().last().unwrap()
|
2024-04-17 17:34:27 -04:00
|
|
|
}
|
|
|
|
|
2024-06-21 12:14:19 -04:00
|
|
|
// Should take ownership
|
|
|
|
fn string_uppercase(mut data: &String) {
|
2024-07-04 09:18:09 -04:00
|
|
|
data = data.to_uppercase();
|
2024-04-17 17:34:27 -04:00
|
|
|
|
2024-06-21 12:14:19 -04:00
|
|
|
println!("{data}");
|
2021-05-17 08:10:40 -04:00
|
|
|
}
|
2024-07-10 07:47:33 -04:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let data = "Rust is great!".to_string();
|
|
|
|
|
|
|
|
get_char(data);
|
|
|
|
|
|
|
|
string_uppercase(&data);
|
|
|
|
}
|