RosettaCodeData/Task/Bitmap-Histogram/PicoLisp/bitmap-histogram.l
2023-07-01 13:44:08 -04: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 ) )