mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
neaten
This commit is contained in:
parent
fc75359f64
commit
2b72cc1f7e
2 changed files with 15 additions and 1 deletions
12
data/gen.c
Normal file
12
data/gen.c
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
#include <stdio.h>
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
long long n = 100;
|
||||
if (argc == 2) {
|
||||
(void)sscanf(argv[1], "%lld", &n);
|
||||
}
|
||||
for (long long i = 0; i < n; i++) {
|
||||
printf("i=%lld\n", i);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue