Right now it seems like parse errors result in undefined output. For example (note the stray double quote): input: ```zig const std = @import("std"); " pub fn main() void { std.debug.warn("Hello World\n"); } ``` output: ```zig const std = @import("std"); ```
Right now it seems like parse errors result in undefined output. For example (note the stray double quote):
input:
output: