Skip to content

Instantly share code, notes, and snippets.

@yedi
Created March 8, 2012 10:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yedi/2000130 to your computer and use it in GitHub Desktop.
Save yedi/2000130 to your computer and use it in GitHub Desktop.
(ns gamble.core)
(defn coin-toss []
(= 1 (rand-int 2)))
(defn toss-score [toss]
(if toss 1 -1))
(defn t [] 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment