diff --git a/src/compound-types/string.md b/src/compound-types/string.md index 76bfc1f..81a2a3b 100644 --- a/src/compound-types/string.md +++ b/src/compound-types/string.md @@ -168,7 +168,9 @@ fn main() { // fill the blank let long_delimiter = __; - assert_eq!(long_delimiter, "Hello, \"##\"") + assert_eq!(long_delimiter, "Hello, \"##\""); + + println!("Success!") } ```