Skip to content

Instantly share code, notes, and snippets.

@samstarling
Created May 1, 2014 11:25
Show Gist options
  • Save samstarling/1044d3d50b3d7a69e969 to your computer and use it in GitHub Desktop.
Save samstarling/1044d3d50b3d7a69e969 to your computer and use it in GitHub Desktop.
package com.distributed
object Helpers {
def maybe(chance: Double)(success: => Any)(failure: => Any) = {
if(scala.util.Random.nextFloat() < chance) {
success
} else {
failure
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment