prompt: hide docker mounts
This commit is contained in:
parent
005c83561d
commit
5cefa4389e
18 changed files with 504 additions and 1 deletions
14
prompt/src/main.zig
Normal file
14
prompt/src/main.zig
Normal 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});
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue