We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53c5ea6 commit 541e97eCopy full SHA for 541e97e
Rust/rustifinity/challenges/mutable-references.rs
@@ -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