experiments/nn/test.c
2024-05-27 21:30:27 +12:00

7 lines
86 B
C

#include <stdio.h>
int main() {
srand(time(NULL));
printf("%d\n", rand());
}