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

5 lines
89 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
(let Freq NIL
(in "file.txt"
(while (char) (accu 'Freq @ 1)) )
(sort Freq) )