Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1use collab::env::get_dotenv_vars; 2 3fn main() -> anyhow::Result<()> { 4 for (key, value) in get_dotenv_vars(".")? { 5 println!("export {}=\"{}\"", key, value); 6 } 7 Ok(()) 8}