mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-01 18:58:44 +08:00
8 lines
138 B
Rust
Executable File
8 lines
138 B
Rust
Executable File
fn main() {
|
|
// ANCHOR: here
|
|
use std::net::IpAddr;
|
|
|
|
let home: IpAddr = "127.0.0.1".parse().unwrap();
|
|
// ANCHOR_END: here
|
|
}
|