Miller–Rabin primality test: Difference between revisions

m
→‎{{header|REXX}}: folded one statement.
(→‎{{header|REXX}}: added more whitespace, simplified some statements.)
m (→‎{{header|REXX}}: folded one statement.)
Line 2,911:
@MRpt= 'Miller─Rabin primality test' /*define a character literal for SAY. */
say "There are" # 'primes ≤' limit /*might as well display some stuff. */
say /*nothing wrong[↓] with some(skipping whitespace.unity); show sep line*/
do a=2 to accur; say copies('─',89) /*(skipping unity) do range of K's. */
say copies('─', 89) /*show separator for the ole eyeballs. */
mrp=0 /*counter of primes for this pass. */
do z=1 for limit /*now, let's get busy and crank primes.*/