This commit is contained in:
2026-02-13 13:12:01 +01:00
parent 91e5b648b6
commit d4ee28c2e1
4 changed files with 3 additions and 11 deletions

View File

@@ -3,7 +3,8 @@
int main() {
set_random_seed(1842);
uint32_t num = random_u32();
printf("%u\n", num);
for (int i = 0; i < 10; i++) {
printf("%u\n", random_u32());
}
return 0;
}