Skip to content

Instantly share code, notes, and snippets.

@chikoski
Created December 25, 2024 06:00
Show Gist options
  • Save chikoski/fc45a7bc9131b1563745066cbf6553e8 to your computer and use it in GitHub Desktop.
Save chikoski/fc45a7bc9131b1563745066cbf6553e8 to your computer and use it in GitHub Desktop.
use std::env;
fn main() {
let name = env::var("name").unwrap_or("world".to_string());
println!("Hello, {name}!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment