Skip to content

Instantly share code, notes, and snippets.

@borntyping
borntyping / bones.py
Created March 31, 2011 20:49
Does dice stuff I suppose.
#!/usr/bin/python
import random
class Die:
def __init__(self,sides):
self.sides = sides
self.facet = False
def __str__(self):