updating lessons

This commit is contained in:
Michael Elliot Braun
2016-03-30 15:54:19 -07:00
parent 1e77491b16
commit a14585d36f
20 changed files with 67 additions and 41 deletions

View File

@ -25,12 +25,13 @@ let x = Math.random(3)
## 3. Write the 'if statement' to check if ``x`` is equal to 2. Inside the 'if statement', display the string "Yes".
```blocks
let x = Math.random(3)
if (x == 2) {
basic.showString("Yes", 150)
}
```
## 3. Write the 'if statement' to check if ``x`` is equal to 1. Inside the 'if statement', display the string "No."
## 4. Write the 'if statement' to check if ``x`` is equal to 1. Inside the 'if statement', display the string "No."
```blocks
let x = Math.random(3)