7 lines
165 B
Text
7 lines
165 B
Text
|
|
fn main() {
|
||
|
|
match hostname::get_hostname() {
|
||
|
|
Some(host) => println!("hostname: {}", host),
|
||
|
|
None => eprintln!("Could not get hostname!"),
|
||
|
|
}
|
||
|
|
}
|