AStat/examples/congruence/congruence.c

6 lines
71 B
C
Raw Normal View History

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