Numbers whose count of divisors is prime: Difference between revisions

m
→‎{{header|REXX}}: changed a comment.
m (changed "numbers" to "positive integers", added whitespace.)
m (→‎{{header|REXX}}: changed a comment.)
Line 7:
 
=={{header|REXX}}==
<lang rexx>/*REXX programpgm finds positive integers N whose count of divisiorsdivisors is prime, where N <200 1000.*/
parse arg hi cols . /*obtain optional arguments from the CL*/
if hi=='' | hi=="," then hi= 1000 /*Not specified? Then use the defaults*/