mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-26 13:01:34 +03:00
6 lines
130 B
Zig
6 lines
130 B
Zig
const std = @import("std");
|
|
|
|
pub fn main(init: std.process.Init) !void {
|
|
try std.testing.expect(init.env_map.count() == 0);
|
|
}
|