Basics
The basic blocks are the first blocks you will use to program Eliobot.
At startup

Type: Order
Definition :
This block is a loop which is executed only once at the start of the program only the blocks in this loop or in a Repeat Indefinitely loop are executed the others are deactivated.
Use :
If we want Eliobot to move forward one space at startup.
Repeat indefinitely

Type: Order
Definition :
This loop repeats the blocks it contains indefinitely. To stop the loop, you must use
.
Be careful, after using this loop, only the blocks inside will be executed infinitely.
Use :
If we want Eliobot to advance indefinitely.
Wait X seconds

Type: Order
Definition :
This block allows you to pause the program for a certain number of seconds/milliseconds.
Use :
If you want to take a break in your program between two actions.
Show a value in the terminal

Type: Order
Definition :
This block allows you to display a value in the terminal. The value can be a number, text, or a Boolean.
Use :
If you want to display a value to debug your program.