"Mimo's Dice Tumbler" is an effort to see how many systems and languages I can write a dice roller for. I also want to utilize a variety of different types of RNG sources and implementations. SmallBASIC: LABEL rolldie a = ROUND(RND()10) if a > 6 then goto rolldie PRINT "Your 6 sided die says:" PRINT a Python: import random x = random.randint(1,6) print x