Skip to content

Instantly share code, notes, and snippets.

@Liutos
Created August 21, 2012 08:39
Show Gist options
  • Save Liutos/3413567 to your computer and use it in GitHub Desktop.
Save Liutos/3413567 to your computer and use it in GitHub Desktop.
(defun loop-random (times)
(with-output-to-string (*standard-output*)
(loop
:for i :from 1 :to times
:do (format t "~A" (random 10)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment