2024-07-04 07:38:35 -04:00
|
|
|
#![allow(clippy::ptr_arg)]
|
|
|
|
|
2024-06-21 12:14:19 -04:00
|
|
|
// Borrows instead of taking ownership.
|
|
|
|
// It is recommended to use `&str` instead of `&String` here. But this is
|
|
|
|
// enough for now because we didn't handle strings yet.
|
|
|
|
fn get_char(data: &String) -> char {
|
|
|
|
data.chars().last().unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Takes ownership instead of borrowing.
|
|
|
|
fn string_uppercase(mut data: String) {
|
|
|
|
data = data.to_uppercase();
|
|
|
|
|
|
|
|
println!("{data}");
|
|
|
|
}
|
2024-07-10 07:47:33 -04:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let data = "Rust is great!".to_string();
|
|
|
|
|
|
|
|
get_char(&data);
|
|
|
|
|
|
|
|
string_uppercase(data);
|
|
|
|
}
|