Skip to content

Instantly share code, notes, and snippets.

View carlvanwormer's full-sized avatar

carlvanwormer

View GitHub Profile
# version 53
import random
def roll_dice():
return random.randint(1, 6), random.randint(1, 6)
def main():
while True:
input("Press Enter to roll the dice...")