1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-16 10:51:42 +02:00

Fix formatting in strings4.rs

This commit is contained in:
Yerkebulan Tulibergenov 2024-07-06 12:53:14 -07:00 committed by GitHub
parent 186dc3c1ab
commit 1499f681a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,6 +4,7 @@ fn placeholder() {}
fn string_slice(arg: &str) { fn string_slice(arg: &str) {
println!("{arg}"); println!("{arg}");
} }
fn string(arg: String) { fn string(arg: String) {
println!("{arg}"); println!("{arg}");
} }