From 9f1bd057089860ea3a4c4e7fa51846f9fbdecf95 Mon Sep 17 00:00:00 2001 From: Andrew Mulholland <833193+gbaman@users.noreply.github.com> Date: Wed, 20 Jul 2022 00:17:28 +0100 Subject: [PATCH] Fix Makecode loading crash with global score --- python/lesson9/lesson9.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lesson9/lesson9.md b/python/lesson9/lesson9.md index 519a9b48..1d7b470f 100644 --- a/python/lesson9/lesson9.md +++ b/python/lesson9/lesson9.md @@ -56,7 +56,7 @@ In the code you have been given a variable named `||variables:score||`, add **1* Edit the condition in the while loop, so that it only loops when `||variables:score||` is less than or equal to **15**. Add two splash screens at the start and the end of the game using the `||gameplay:show title||` command. Declare the `||variable:score||` variable as global, using the command: -```python +``` global score ```