Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 315 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 315 Bytes

zinput

A Zig command-line input library!

Usage

const zinput = @import("zinput");

const my_string = try zinput.askString(allocator, "I need a string!", 128);
defer allocator.free(my_string);

Check out the test in main.zig for an example!