Write a list of instructions to solve this maze
You are the red arrow and must get to the gold block
Small basic
Blocky programming
Textual programming
Toolbar – lets us save, open and create new files
Run button – will execute (run) the code
Page – this is where we write our code. As we type we will get suggestions for code.
Right window – This gives us more information about the code
Our first program
Result
Other instructions
Turtle.Move() | |
Turtle.TurnLeft() | |
Turtle.PenDown() | Put the pen down so the turtle will leave a line |
Turtle.PenUp() | Lift the pen so the turtle can move without leaving a line |
Turtle.moveTo(100, 100) | Moves the turtle to coordniates (100,100) |
GraphicsWindow.penColor = “Red” | Changes the pen colour to red |