mirror of
https://github.com/denoland/deno.git
synced 2025-03-09 21:57:40 -04:00
6 lines
132 B
Rust
6 lines
132 B
Rust
// { "env": { "one": "1", "two": "2", "three": "3" } }
|
|
|
|
fn main() {
|
|
let vars = std::env::vars();
|
|
assert_eq!(vars.count(), 3);
|
|
}
|