4 lines
94 B
Text
4 lines
94 B
Text
genrange=: {{
|
|
'start stop increment'=. y
|
|
start+increment*i.1+<.(stop-start)%increment
|
|
}}
|