I have this code:
var input_buf_long: [100]u8 = undefined;
pub fn main() !void {
const stdout_file = std.io.getStdOut().writer();
var bw = std.io.bufferedWriter(stdout_file);
const stdout = bw.writer();
const stdin = std.io.getStdIn().reader();
_ = try stdin.readUntilDelimiterOrEof(input_buf_long[0..], '\n');
And i need to put actual characters in some other constant variable. Do i need to manually allocate another array with length of read symbols?