# Pastebin Qq94IyZK const std = @import("std"); const os = std.os; pub fn main() anyerror!void { var buf: [10]u8 = undefined; try os.getrandom(&buf); std.debug.warn("rand: {}", buf); }