diff --git a/docs/tutorials/getting-started.md b/docs/tutorials/getting-started.md index 371eff45..12837afb 100644 --- a/docs/tutorials/getting-started.md +++ b/docs/tutorials/getting-started.md @@ -30,11 +30,19 @@ basic.showString("Hello world") Use the **Basic** drawer in the editor to drag out and arrange three blocks to create this program: +```blocks +basic.forever(() => { + basic.showNumber(0) +}) +``` + ### Step 5 Use the **Basic** drawer in the editor to drag out and arrange three blocks to create this program: ```blocks -basic.showString("Hello world") +input.onButtonPressed(Button.A, () => { + basic.showString("Hello!") +}) ```