Add quotes

This commit is contained in:
Magnus Markling 2022-08-28 15:10:29 +02:00 committed by GitHub
parent 3309a01b5e
commit 94bdb708fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -22,5 +22,5 @@ fn main() {
let string2 = "xyz";
let result = longest(string1.as_str(), string2);
println!("The longest string is {}", result);
println!("The longest string is '{}'", result);
}