Turtle Command

ilist

ilist, short for instruction-list, represents a list of commands to be executed one after another. It is used in such cases as if, or cases in general where a list of commands is executed.
For example : if var > 5 [fd 5 rt 30 eat]
The ilist in this example is [fd 5 rt 30 eat]. It tells the turtle to go forward 5, then turn right by 30 degress, and then perform the procedure "eat".
Note: An ilist must always be in brackets.