trpl-zh-cn/listings/ch19-advanced-features/no-listing-11-cant-create-str/src/main.rs
2022-02-06 16:43:51 +08:00

7 lines
129 B
Rust
Executable File

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