From 975808f831504f671534d0019ecb458436fc254e Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Fri, 5 Sep 2025 06:16:45 +0000 Subject: [PATCH] Add descriptive paragraph to Craps game --- src/components/CrapsGame.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/CrapsGame.tsx b/src/components/CrapsGame.tsx index 2cf1767..e717f71 100644 --- a/src/components/CrapsGame.tsx +++ b/src/components/CrapsGame.tsx @@ -316,6 +316,9 @@ const CrapsGame: React.FC = ({ In the game of Craps, we roll two dice, and note the sum S. In the traditional game, if S is 2, 3, or 12, you lose immediately; if the S is 7 or 11, you win immediately, and the game continues otherwise. +

+ On this page, you can: (a) play the classic game; (b) make your own win/lose conditions and play; (c) simulate the game over a number of rounds to note win/loss statistics and the average game duration. +

{/* Simulation Controls */}