Xorshift32

This commit is contained in:
2026-02-11 16:54:04 +01:00
parent feb4bd7fd4
commit 39d790a45c
3 changed files with 43 additions and 0 deletions

9
iris_c/main.c Normal file
View File

@@ -0,0 +1,9 @@
#include "random.h"
#include <stdio.h>
int main() {
set_random_seed(1842);
uint32_t num = random_u32();
printf("%u\n", num);
return 0;
}