RosettaCodeData/Task/Rosetta-Code-Rank-languages-by-popularity/PicoLisp/rosetta-code-rank-languages-by-popularity.l

15 lines
479 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(load "@lib/http.l")
(for (I . X)
(flip
(sort
(make
(client "rosettacode.org" 80
"mw/index.php?title=Special:Categories&limit=5000"
(while (from "<li><a href=\"/wiki/Category:")
(let Cat (till "\"")
(from "(")
(when (format (till " " T))
(link (cons @ (ht:Pack Cat))) ) ) ) ) ) ) )
(prinl (align 3 I) ". " (car X) " - " (cdr X)) )