Skip to content

Instantly share code, notes, and snippets.

@avli
Created May 6, 2015 05:40
Show Gist options
  • Save avli/46bf2511033e7ccc86d6 to your computer and use it in GitHub Desktop.
Save avli/46bf2511033e7ccc86d6 to your computer and use it in GitHub Desktop.
(defun natural-random (limit)
(1+ (random limit)))
(defun select-track ()
(interactive)
(let ((cup-number (natural-random 10))
(track-number (natural-random 4)))
(message (format "Cup #%i, track #%i" cup-number track-number))))
(select-track)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment