LOGO Interpreter (Lab Work)

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

LOGO Programming

Basic commands

FORWARD

RIGHT

LEFT

Note:

Distance is always in millimeters

Angle is always in degrees

Question 1. How to draw square step by step

The pointer or turtle always points upward in the start.

FORWARD 100

RIGHT 90

FORWARD 100
RIGHT 90

FORWARD 100

RIGHT 90

FORWARD 100
Question 2. Write instructions to draw a Rectangle

FORWARD 100

RIGHT 90

FORWARD 200

RIGHT 90

FORWARD 100

RIGHT 90

FORWARD 200

You might also like