Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created August 22, 2024 12:32
Show Gist options
  • Save velotiotech/6f83d97f116eb684982d1270a0e8a178 to your computer and use it in GitHub Desktop.
Save velotiotech/6f83d97f116eb684982d1270a0e8a178 to your computer and use it in GitHub Desktop.
fn get_char(data: String) -> char {
data.chars().last().unwrap()
}
fn string_uppercase(mut data: &String) {
data = data.to_uppercase();
println!("{data}");
}
fn main() {
let data = "Rust is great!".to_string();
get_char(data);
string_uppercase(&data);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment