didn't expect an analysis of a cheat from them, interesting technical bits though.
Yes: const std = @import("std"); const expectEqual = std.testing.expectEqual; test "u4 is 1 byte" { try expectEqual(1, @sizeOf(u4)); } test "u4 is 4 bits" { try expectEqual(4, @bitSizeOf(u4)); } test "u4 is…
didn't expect an analysis of a cheat from them, interesting technical bits though.
Yes: const std = @import("std"); const expectEqual = std.testing.expectEqual; test "u4 is 1 byte" { try expectEqual(1, @sizeOf(u4)); } test "u4 is 4 bits" { try expectEqual(4, @bitSizeOf(u4)); } test "u4 is…