trpl-zh-cn/listings/ch20-advanced-features/no-listing-11-cant-create-str/src/main.rs
2024-10-20 23:44:05 +08:00

7 lines
129 B
Rust

fn main() {
// ANCHOR: here
let s1: str = "Hello there!";
let s2: str = "How's it going?";
// ANCHOR_END: here
}