RosettaCodeData/Task/Letter-frequency/PicoLisp/letter-frequency.l

5 lines
89 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(let Freq NIL
(in "file.txt"
(while (char) (accu 'Freq @ 1)) )
(sort Freq) )