pxt-calliope/docs/lessons/guess-the-number/tutorial.md
Sam El-Husseini 6f148c14e0 Fix randomInt
2018-06-01 11:42:38 -07:00

439 B

guess the number tutorial

~avatar avatar

This tutorial will help you create a guess the number game! Let's get started!

~

Rebuild the game!

The blocks have been shuffled! Put them back together so that...

  • when the user presses button A,
    • generate a random number
    • show the number on screen
input.onButtonPressed(Button.A, () => {
    let x = Math.randomRange(0, 10)
    basic.showNumber(x)
})