Skip to content

Commit

Permalink
Adds explanation <= and >= to text level 14 (hedyorg#1816)
Browse files Browse the repository at this point in the history
* Adds explanation of >= and <= to text level 14

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
juliabolt and mergify[bot] authored Jan 27, 2022
1 parent 6dda5b3 commit edda8f4
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
18 changes: 18 additions & 0 deletions coursedata/level-defaults/en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,9 @@
intro_text: |
We are going to learn more new items. You might know them already from mathematics, the `<` and `>`.
The `<` checks if the first number is smaller than the second, for example `age < 12` checks if `age` is smaller than 12.
If you want to check if the first number is smaller or equal to the second, you can use `<=`, for example `age <= 11`.
The `>` checks if the first number is bigger than the second, for example `points > 10` checks if `points` is larger than 10.
If you want to check if the first number is bigger or equal to the second, you can use `>=`, for example `points >= 11`.
You use these comparisons in an `if`, like this:
```
age = ask 'How old are you?'
Expand Down Expand Up @@ -586,6 +588,22 @@
if answer != 25
print 'That is not correct!'
- name: "Smaller or equal"
explanation: "We use the `<=` to check if the first number is smaller than or equal to the second number."
example: "For example: age <= 12"
demo_code: |-
age = ask 'How old are you?'
if age <= 12
print 'You are younger than me!'
- name: "Bigger or equal"
explanation: "We use the `>=` to check if the first number is bigger than or equal to the second number."
example: "For example: age >= 14"
demo_code: |-
age = ask 'How old are you?'
if age >= 14
print 'You are older than me!'
15:
start_code: |-
answer = 0
Expand Down
18 changes: 18 additions & 0 deletions coursedata/level-defaults/nl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,9 @@
intro_text: |
We gaan nieuwe tekens leren, je kent ze misschien wel van rekenen/wiskunde, `<` en `>`.
De `<` kijkt of het eerste getal kleiner is dan de tweede. Bijvoorbeeld met `leeftijd < 12` kun je kijken of `leeftijd` kleiner is dan 12.
Als je wil kijken of een getal kleiner of even groot is dan een ander getal, kun je `<=` gebruiken. Bijvoorbeeld `leeftijd <= 11`.
De `>` kijkt of iets groter is dan het tweede getal. Bijvoorbeeld met `punten > 10` kun je kijken of `punten` groter is dan 10.
ALs je wil kijken of een getal groter of juist even groot is als een ander getal, door `>=` te gebruiken. Bijvoorbeeld `punten >= 11`.
Je gebruikt de vergelijkingen in de `if`, zo:
Expand Down Expand Up @@ -550,6 +552,22 @@
if answer != 25
print 'Foutje!'
- name: "Kleiner of gelijk"
explanation: "We gebruiken `<=` om te kijken of het eerste getal kleiner of even klein is als het tweede getal"
example: "Bijvoorbeeld: leeftijd <= 13"
demo_code: |-
leeftijd = ask 'Hoe oud ben jij?'
if leeftijd <= 12
print 'Dan ben je jonger dan ik!'
- name: "Groter of gelijk"
explanation: "We gebruiken `>=` om te kijken of het eerste getal groter of even groot is als het tweede getal"
example: "Bijvoorbeeld: leeftijd >= 14"
demo_code: |-
leeftijd = ask 'Hoe oud ben jij?'
if leeftijd >= 14
print 'Dan ben je ouder dan ik!'
15:
start_code: |-
antwoord = 0
Expand Down

0 comments on commit edda8f4

Please sign in to comment.