This commit is contained in:
2021-12-20 15:50:03 +01:00
commit 36fe7cf4a7
6 changed files with 41 additions and 0 deletions

6
ch2.md Normal file
View File

@@ -0,0 +1,6 @@
Implement a classic beginner programming problem: a guessing game.
- [ ] generate a random integer between 1 and 100
- [ ] prompt the player to enter a guess
- [ ] after a guess is entered, indicate whether the guess is too low or too high
- [ ] elseif the guess is correct, print a congratulatory message and exit