mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 21:32:15 +08:00
11 lines
225 B
Rust
Executable File
11 lines
225 B
Rust
Executable File
fn main() {
|
|
// ANCHOR: here
|
|
let data = "initial contents";
|
|
|
|
let s = data.to_string();
|
|
|
|
// 该方法也可直接用于字符串字面值:
|
|
let s = "initial contents".to_string();
|
|
// ANCHOR_END: here
|
|
}
|