Skip to content

Commit

Permalink
add solution to mutable references challenge
Browse files Browse the repository at this point in the history
  • Loading branch information
AlphonseMehounme committed Dec 5, 2024
1 parent 53c5ea6 commit 541e97e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Rust/rustifinity/challenges/mutable-references.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
pub fn append_suffix(s: &mut String, suffix: &str) {
// Your code here...
s.push_str(suffix);
}

0 comments on commit 541e97e

Please sign in to comment.