summaryrefslogtreecommitdiffstats
path: root/src/doc/book/listings/ch04-understanding-ownership/no-listing-05-clone/src/main.rs
blob: 4e61cc1a1642910eb7767f2c42d23dc90fe34ce1 (plain)
1
2
3
4
5
6
7
8
fn main() {
    // ANCHOR: here
    let s1 = String::from("hello");
    let s2 = s1.clone();

    println!("s1 = {}, s2 = {}", s1, s2);
    // ANCHOR_END: here
}