SIMPLE TURTLE
================
Create simple LOGO programs with commands to control the Turtle and draw amazing images!! Use for STEM, Coderdojo or similar coding events.
Recursive REPEAT statements.
INSTANT ON / OFF = Turns on / off immediate execution of commands
FD x = Forward x pixels
BK x = Backward x pixels
RT x = Right by x degrees
LT x = Left by x degrees
PU = Pen Up (Do not draw)
PD = Pen Down (Draw as normal)
REPEAT x = Creates a loop to run x times...