diff --git a/dice_roller.py b/dice_roller.py new file mode 100644 index 00000000..63fd6382 --- /dev/null +++ b/dice_roller.py @@ -0,0 +1,5 @@ +import random + +print("🎲 Rolling the dice...") +dice = random.randint(1, 6) +print(f"You rolled: {dice}")