<< Previous | Next >>

Daily Learnings: Tue, Apr 16, 2024

Let us be grateful to people who make us happy; they are the charming gardeners who make our souls blossom. — Marcel Proust

More Notes on Rust Strings

I spent some time today continuing my VERY slow study about Rust.

fn main() {
  let mut S: String = String::from("hello");
  s.push(',');
  s.push_str(" world");
  s += "!";
}

References