Skip to content

Commit 541e97e

Browse files
add solution to mutable references challenge
1 parent 53c5ea6 commit 541e97e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
pub fn append_suffix(s: &mut String, suffix: &str) {
2+
// Your code here...
3+
s.push_str(suffix);
4+
}

0 commit comments

Comments
 (0)