trpl-zh-cn/listings/ch19-advanced-features/no-listing-11-cant-create-str/src/main.rs

7 lines
129 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
// ANCHOR: here
let s1: str = "Hello there!";
let s2: str = "How's it going?";
// ANCHOR_END: here
}