fun little arrow operator

This commit is contained in:
2022-10-16 18:43:51 -04:00
parent 74e69d6c56
commit 4d794c2c6f
+1 -1
View File
@@ -71,7 +71,7 @@ range: fprintf(stderr,
if(*ep != '\0')
goto error;
while(--r >= 0)
while(r --> 0)
fprintf(stdout, "%d\n", rand() % s + 1);
}