cmd_toys/num2words/
constants.rs

1pub (crate) const ONES: [&str; 20] = [
2    "zero",
3    "one",
4    "two",
5    "three",
6    "four",
7    "five",
8    "six",
9    "seven",
10    "eight",
11    "nine",
12    "ten",
13    "eleven",
14    "twelve",
15    "thirteen",
16    "fourteen",
17    "fifteen",
18    "sixteen",
19    "seventeen",
20    "eighteen",
21    "nineteen",
22];
23pub(crate) const TENS: [&str; 10] = [
24    "zero", "ten", "twenty", "thirty", "forty", "fifty", "sixty", "seventy", "eighty", "ninety",
25];
26pub(crate) const ORDERS: [&str; 7] = [
27    "zero",
28    "thousand",
29    "million",
30    "billion",
31    "trillion",
32    "quadrillion",
33    "quintillion", // enough for u64::MAX
34];