AStat/examples/congruence/congruence.c

5 lines
71 B
C

void main() {
int x = rand(0, 10);
x = 2 * x;
assert(x % 2 == 0);
}