mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-07 14:24:43 +00:00
Tests a decent amount of edge cases dealing with how PATH and PATHEXT searching is handled.
6 lines
146 B
Zig
6 lines
146 B
Zig
const std = @import("std");
|
|
|
|
pub fn main() !void {
|
|
const stdout = std.io.getStdOut().writer();
|
|
try stdout.writeAll("hello from exe\n");
|
|
}
|