hello ! I'm not doing anything crazy, just opening a file but I keep getting stackoverflow errors and I actually have no idea of how opening a file can cause this type of error
const std = @import("std");
pub fn main() !void {
var file = try std.fs.cwd().openFile("test.txt", .{});
defer file.close();
std.debug.print("{!}\n", .{file});
}
how much did i f up is those 3 lines ???
thanks you for your help !