Skip to content

Instantly share code, notes, and snippets.

View j5ndev's full-sized avatar
🐝

MJ j5ndev

🐝
View GitHub Profile
@yougg
yougg / tree.zig
Last active August 26, 2025 03:12
ziglang simple implementation for print file tree
// zig version: 0.15.1+
const std = @import("std");
const Entry = struct {
name: []const u8,
kind: std.fs.Dir.Entry.Kind,
};
pub fn main() !void {