mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-08 23:04:24 +00:00
6 lines
207 B
Zig
6 lines
207 B
Zig
const std = @import("std");
|
|
|
|
pub fn main() void {
|
|
const env_map = std.process.getEnvMap(std.debug.global_allocator) catch @panic("unable to get env map");
|
|
std.testing.expect(env_map.count() == 0);
|
|
}
|