std.debug.print("{s}\n", .{printed});
}
-pub fn @"error"(line: u32, message: []const u8) !void {
+pub fn scanError(line: u32, message: []const u8) !void {
try report(line, "", message);
}
hadError = true;
}
-pub fn parse_error(allocator: Allocator, token: Token, message: []const u8) !void {
+pub fn parseError(allocator: Allocator, token: Token, message: []const u8) !void {
if (token.type == .eof) {
try report(token.line, " at end", message);
} else {