Learning Zig
Ziggit
Learning Zig
Hello guys, this is my first time learning Zig and programming. Why I am getting stuck at while loop in this code below if I typing let say “Jack”, sorry If my question doesn’t make sense and sorry my English is not that good. const std = @import("std"); const File = std.Io.File; pub fn main(init: std.process.Init) !void { const io = init.io; var stdout_buffer: [4096]u8 = undefined; var stdout_writer = File.stdout().writer(io, &stdout_buffer); const stdout = &stdout_writer.int...
0 comments
No comments yet.