Skip to content

Instantly share code, notes, and snippets.

@mnzk
Created May 26, 2012 14:03
Show Gist options
  • Save mnzk/2794070 to your computer and use it in GitHub Desktop.
Save mnzk/2794070 to your computer and use it in GitHub Desktop.
evenodd.el
(require 'cl)
(loop for x from 1 to 10000
do (insert (format "Case %d: a = %s\n"
x (if (zerop (% x 2)) "False" "True"))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment