diff options
| author | Mo <76752051+mo8it@users.noreply.github.com> | 2024-07-06 22:22:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-06 22:22:27 +0200 |
| commit | 48697b8225de5ab8e8254d712728c4a09fcb778d (patch) | |
| tree | 25b274809aa17df674dee52c385bb00c2cd19117 /exercises | |
| parent | 1652bb67d94d7bd4eb8d3cd5772fc315b82dd3bd (diff) | |
| parent | 1499f681a395693eb3da65aa4f992a1346804657 (diff) | |
Merge pull request #2027 from yerke/patch-2
Fix formatting in strings4.rs
Diffstat (limited to 'exercises')
| -rw-r--r-- | exercises/09_strings/strings4.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/exercises/09_strings/strings4.rs b/exercises/09_strings/strings4.rs index 9d9eb48..4730726 100644 --- a/exercises/09_strings/strings4.rs +++ b/exercises/09_strings/strings4.rs @@ -4,6 +4,7 @@ fn placeholder() {} fn string_slice(arg: &str) { println!("{arg}"); } + fn string(arg: String) { println!("{arg}"); } |
