| 1 | const std = @import("std"); |
| 2 | |
| 3 | const ucd = @import("unicode-ucd"); |
| 4 | |
| 5 | pub fn main() !void { |
| 6 | std.log.info("All your codebase are belong to us.", .{}); |
| 7 | |
| 8 | const data = .{ |
| 9 | ucd.arabic_shaping, |
| 10 | ucd.bidi_brackets, |
| 11 | ucd.bidi_mirroring, |
| 12 | ucd.blocks, |
| 13 | ucd.cjk_radicals, |
| 14 | ucd.case_folding, |
| 15 | ucd.composition_exclusions, |
| 16 | ucd.derived_age, |
| 17 | ucd.derived_core_properties, |
| 18 | ucd.east_asian_width, |
| 19 | ucd.emoji_sources, |
| 20 | ucd.equivalent_unified_ideograph, |
| 21 | ucd.hangul_syllable_type, |
| 22 | ucd.indic_positional_category, |
| 23 | ucd.indic_syllabic_category, |
| 24 | ucd.jamo, |
| 25 | ucd.line_break, |
| 26 | ucd.name_aliases, |
| 27 | ucd.named_sequences, |
| 28 | ucd.named_sequences_prov, |
| 29 | ucd.prop_list, |
| 30 | ucd.scripts, |
| 31 | ucd.vertical_orientation, |
| 32 | ucd.emoji, |
| 33 | ucd.script_extensions, |
| 34 | ucd.property_aliases, |
| 35 | ucd.property_value_aliases, |
| 36 | ucd.unicode_data, |
| 37 | ucd.special_casing, |
| 38 | }; |
| 39 | |
| 40 | inline for (data) |b| { |
| 41 | _ = b.data; |
| 42 | } |
| 43 | } |