1
0
Fork 0
zar/deps/time/calendar.zig
2021-12-21 12:40:58 +00:00

9 lines
220 B
Zig

// Calendar is a simple zig program that prints the calendar on the stdout. This
// is to showcase maturity of the time library.
const Time = @import("./src/time.zig").Time;
pub fn main() void {
Time.calendar();
}