| ... | @@ -5,7 +5,11 @@ const ucd = @import("unicode-ucd"); | ... | @@ -5,7 +5,11 @@ const ucd = @import("unicode-ucd"); |
| 5 | pub fn main() !void { | 5 | pub fn main() !void { |
| 6 | std.log.info("All your codebase are belong to us.", .{}); | 6 | std.log.info("All your codebase are belong to us.", .{}); |
| 7 | | 7 | |
| 8 | for (ucd.blocks.blocks) |b| { | 8 | const data = .{ |
| 9 | std.debug.print("{}\n", .{b}); | 9 | ucd.blocks.blocks, |
| | 10 | }; |
| | 11 | |
| | 12 | inline for (data) |b| { |
| | 13 | _ = b; |
| 10 | } | 14 | } |
| 11 | } | 15 | } |