A suggestion I have is that we should have a Check Once if ____= (a list of numbers)
What is it?
This is saying if ____ equals any of the numbers listed, then continue on with what is inside of that block.
Why?
It could be used for drawing pads and games. In drawing pads, it could be used to say if color = any number from 0-23 then Leave a Trail that color code. If it equals anything above 23, then do as follows.
In games, it could be used to say if lives = any number from 0-3 then set text lives red. If it doesnât equal any number from 0-3, then do as follows.
What youâre after are either Boolean operators (AND, OR, âŠ) or âcase structureâ found in other languages. That would be an advancement, but it may be out of scope for Hopscotch - at least for now.