prompt: hide docker mounts

This commit is contained in:
Martin Sekera 2024-09-29 17:40:58 +02:00
parent 005c83561d
commit 5cefa4389e
18 changed files with 504 additions and 1 deletions

14
prompt/src/main.zig Normal file
View file

@ -0,0 +1,14 @@
const std = @import("std");
pub fn main() !void {
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
const allocator = gpa.allocator();
defer _ = gpa.deinit();
var args = try std.process.argsWithAllocator(allocator);
defer args.deinit();
while(args.next()) |arg|{
std.debug.print("{s}\n", .{arg});
}
}