All pastes #2052272 Raw Edit

Someone

public text v1 · immutable
#2052272 ·published 2011-04-30 15:57 UTC
rendered paste body
(defun plot (fn min max step)
  (loop for i from min to max by step do
    (loop repeat (funcall fn i) do (format t "*"))
    (format t "~%")))