1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-06-23 00:28:46 +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

View File

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