fn isBlank(line: []const u8) bool
fn isBlank(line: []const u8) bool { return mem.indexOfNone(u8, line, " \t") == null; }