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