Zig the funny Language.
const std = @import("std");
pub fn main() void {
var sum: u32 = 0;
var i: u32 = 0;
while (i < 1000) : (i += 1) {
if (@rem(i, 3) == 0 or @rem(i, 5) == 0) {
sum += i;
}
}
std.debug.print("ans: {d}!", .{sum});
}
So It looks like it actually does highlight the syntax
which is kind of neat.
Now let's see if we can get math to work inline $4+3+x=12$(e^{2+2}) and in a block
$$ x^2 = 32$$
Well block
math seams to work, I guess I'll fidle around with the fucking thing but this seams to work so far. Which is good!