Skip to content

Instantly share code, notes, and snippets.

@mstepniowski
Created March 29, 2009 19:57
Show Gist options
  • Save mstepniowski/87506 to your computer and use it in GitHub Desktop.
Save mstepniowski/87506 to your computer and use it in GitHub Desktop.
class Die(object):
def __init__(self, n):
self.n = n
def roll(self):
return random.randint(1, self.n)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment