1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-02-03 13:11:36 +02:00

Add newline between functions

This commit is contained in:
mo8it 2024-07-06 22:23:19 +02:00
parent 5d4363d58d
commit 981a4778a9

View File

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