mirror of
https://github.com/ziglang/zig.git
synced 2025-12-12 01:03:13 +00:00
7 lines
207 B
Zig
7 lines
207 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");
|
|
try std.testing.expect(env_map.count() == 0);
|
|
}
|