zig-lys/src/args/help.zig

9 lines
161 B
Zig
Raw Normal View History

2024-11-28 01:14:52 +00:00
const std = @import("std");
pub fn printHelp(comptime T: type, writer: std.io.AnyWriter) !void {
_ = T;
_ = writer;
return error.NotImplemented;
}