Controls: Up Arrow: move forward Left Arrow: rotate left Right Arrow: rotate right B: change background How to use the variables: the top three are used for making simple shapes. move is how far you will be moving on an edge, rotate is how far clockwise you will rotate at a corner and repeat is how many times rotate and move will be used to create the shape. here are some examples which you could try: square: repeat: 4, rotate: 90, move: 50 triangle: repeat: 3, rotate: 120, move: 70 pentagon: repeat: 5, rotate: 64, move: 60 the second versions of them lets you use these shapes to create patterns. these variables do the following: repeat2: how many times the shape will be used for the pattern you create. rotate2: how far clockwise you will rotate before putting the shape down again. move2: how far forward you will travel before putting the shape down again. you can type the letter t to let you teleport to different areas on the screen. you will have to type: +000:+000. obviously the + can be replaced with a - but you have to have it. the number you type after that has to be three digits long but you can type single digit numbers like this: 003. size is for how thick the line is. before you can do any of the above, make sure that you check whether your turtle is drawing or not using the pen down? variable. 0 is false, 1 is true. and don't forget to show this to your friends if you can!
this is based off a computer app called logo which lets you create patterns using simple commands.