8 lines
89 B
Awk
8 lines
89 B
Awk
BEGIN {
|
|
n=10
|
|
for(i=1;i<=n;i++) {
|
|
printf i;
|
|
if(i<n) printf ", "
|
|
}
|
|
print
|
|
}
|