mirror of
https://github.com/ziglang/zig.git
synced 2024-11-29 00:22:33 +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);
|
|
}
|