From af47cecef38865fb412f3f700cd0f8eac7a2f8e2 Mon Sep 17 00:00:00 2001 From: Jeremy Walker Date: Tue, 21 Jan 2025 21:52:41 +0000 Subject: [PATCH] Update the stub --- .../projects/golf/exercises/shot-checker/stub.jiki | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootcamp_content/projects/golf/exercises/shot-checker/stub.jiki b/bootcamp_content/projects/golf/exercises/shot-checker/stub.jiki index 390c3431f9..28d9ccd8fb 100644 --- a/bootcamp_content/projects/golf/exercises/shot-checker/stub.jiki +++ b/bootcamp_content/projects/golf/exercises/shot-checker/stub.jiki @@ -1,7 +1,7 @@ // Set our initial variables set tee_position to 30 -set grass_y to 75 set ball_x to tee_position - 1 // We increment this before we use it. +set ball_y to 75 set ball_radius to 3 // As we're not changing colors, we can @@ -15,7 +15,7 @@ repeat 10 times do // Draw the ball clear() - circle(ball_x, grass_y, ball_radius) + circle(ball_x, ball_y, ball_radius) end // TODO: Handle the ball landing in the hole. \ No newline at end of file