mirror of
https://github.com/ziglang/zig.git
synced 2025-12-10 00:03:10 +00:00
7 lines
202 B
Zig
7 lines
202 B
Zig
const std = @import("std");
|
|
|
|
pub fn main() void {
|
|
const env_map = std.process.getEnvMap(std.testing.allocator) catch @panic("unable to get env map");
|
|
std.testing.expect(env_map.count() == 0);
|
|
}
|