AStat/examples/karr/karr.c
2024-06-09 21:30:20 +02:00

5 lines
70 B
C

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