R
Roger
Greetings...
I have an array that is populated with odd numbers.
@odd_num = ("1","3","5","7","9","11","13","15","17","19","21",
"23","25","27","29","31","33","35","37","39","41","43");
I would like to clean up this code and use the range operator '..' and I was
seeking a clever way to get a set of odd numbers like above. AFAIK the range
operator returns whole numbers.
Thanks for any insight.
I have an array that is populated with odd numbers.
@odd_num = ("1","3","5","7","9","11","13","15","17","19","21",
"23","25","27","29","31","33","35","37","39","41","43");
I would like to clean up this code and use the range operator '..' and I was
seeking a clever way to get a set of odd numbers like above. AFAIK the range
operator returns whole numbers.
Thanks for any insight.