master
1const std = @import("std");
2
3pub fn main() !void {
4 var args = try std.process.argsWithAllocator(std.heap.page_allocator);
5 _ = args.skip();
6 const filename = args.next().?;
7 const file = try std.fs.cwd().createFile(filename, .{});
8 defer file.close();
9 try file.writeAll(filename);
10}