]> git.proxmox.com Git - rustc.git/blobdiff - src/doc/book/listings/ch08-common-collections/listing-08-06/src/main.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / src / doc / book / listings / ch08-common-collections / listing-08-06 / src / main.rs
index 1b42274a6dd0e47bb34b218d2eb9e692db654589..653ac27b0a8b6547cd42e5959e6a400c17b9d17c 100644 (file)
@@ -6,6 +6,6 @@ fn main() {
 
     v.push(6);
 
-    println!("The first element is: {}", first);
+    println!("The first element is: {first}");
     // ANCHOR_END: here
 }