Upload files to "/"

This commit is contained in:
Nixyri 2024-02-20 07:21:28 +00:00
parent 76fe666109
commit 79a4c3f51d

8
argv-envp.zig Normal file
View File

@ -0,0 +1,8 @@
const std = @import("std");
pub fn main() void {
std.debug.print("Argv:\n\t", .{});
std.debug.print("{s}\n", .{std.os.argv});
std.debug.print("Envp:\n\t", .{});
std.debug.print("{s}\n", .{std.os.environ});
}