| 15 | } |
| 16 | |
| 17 | int main() { |
| 18 | constexpr auto random_array = random_integers<6>(0, -10, 10); |
| 19 | |
| 20 | log::println(random_array); // using another module for convenience |
| 21 | |
| 22 | // compile-time random like this can be used to automatically build |
| 23 | // lookup tables and generate seemingly random patterns |
| 24 | } |