5 lines
63 B
Bash
5 lines
63 B
Bash
|
|
for ((val=1;;val++)) {
|
||
|
|
print $val
|
||
|
|
(( val % 6 )) || break
|
||
|
|
}
|