Cuban primes: Difference between revisions

Content added Content deleted
m (→‎{{header|REXX}}: changed a glyph in a comment.)
m (→‎{{header|REXX}}: changed a comment.)
Line 1,236:
=={{header|REXX}}==
<lang rexx>/*REXX program finds and displays a number of cuban primes or the Nth cuban prime. */
numeric digits 20 /*ensure enoughtenough decimal digits for #s. */
parse arg N . /*obtain optional argument from the CL.*/
if N=='' | N=="," then N= 200 /*Not specified? Then use the default.*/