Anti-primes: Difference between revisions

(→‎{{header|REXX}}: ooRexx compatible and dramativally simplified)
 
Line 2,703:
=={{header|langur}}==
{{trans|D}}
<syntaxhighlight lang="langur">val .countDivisors = ffn(.n) {
if .n < 2: return 1
for[=2] .i = 2; .i <= .n\2; .i += 1 {
890

edits