]> git.proxmox.com Git - rustc.git/blame - src/doc/book/listings/ch08-common-collections/listing-08-16/src/main.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / src / doc / book / listings / ch08-common-collections / listing-08-16 / src / main.rs
CommitLineData
74b04a01
XL
1fn main() {
2 // ANCHOR: here
3 let mut s1 = String::from("foo");
4 let s2 = "bar";
5 s1.push_str(s2);
2b03887a 6 println!("s2 is {s2}");
74b04a01
XL
7 // ANCHOR_END: here
8}