RosettaCodeData/Task/Bitmap-Histogram/PicoLisp/bitmap-histogram.l
Ingy döt Net 518da4a923 B
2013-04-10 16:19:29 -07:00

6 lines
128 B
Text

(de histogram (Pgm)
(let H (need 256 0)
(for L Pgm
(for G L
(inc (nth H (inc G))) ) )
H ) )