Turtle Command

Introductory Descriptions

number: Any number between -32768.0 and 32767.99998, including decimals.
color: Any integer between 0 and 139 inclusive. See the color note for more info.
shape: Any integer between 0 and 255 inclusive.
angle: Any number between 0 and 359 inclusive, including decimals.
xcor, ycor: Any integer between -screen-edge and screen-edge. Decimals are rounded.
boolean: True or false.
string: A word or string of letters, must be in quotes. For example, "My name is."
dlist: A list of any amount of items, i.e. [1 2 3] or [a b 4]. Must be in brackets. Made with a list command.
anything: Any of the above.
condition: Any sort of conditional statement using the basic equation signs, such as color = red, or xcor > 25.
ilist: A list of commands to be executed one after another, such as [fd 20 rt 20 bk 15]. Must always be in brackets.