summaryrefslogtreecommitdiffstats
path: root/src/doc/book/listings/ch08-common-collections/no-listing-02-format/src/main.rs
blob: 4a38e63d232e031d41107dff28c7555489d52dac (plain)
1
2
3
4
5
6
7
8
9
fn main() {
    // ANCHOR: here
    let s1 = String::from("tic");
    let s2 = String::from("tac");
    let s3 = String::from("toe");

    let s = format!("{}-{}-{}", s1, s2, s3);
    // ANCHOR_END: here
}