MSW Logo By Awin 9s
What is MSW LOGO? MSW (Microsoft Windows) Logo is a programming language developed at the MIT Artificial Intelligence Lab. Logo is one of the easiest programming language, it’s very easy to learn. Logo has been used in telecommunications, multimedia, and robotics, etc.
What IT Looks LIKE The turtle Turtle drawing area Command Input Window Command Box Command Input Window
What is the TURTLE? The turtle is drawn as a triangle in MSW LOGO. When we execute commands, the turtle will do what we type.
Basic Commands There’re few commands in MSW Logo. PU - Short for "pen up," it lifts the "pen" from the screen so that moving the turtle doesn't draw a line. PD - Puts the pen down so that moving the turtle draws a line. FD [length]– Forward/Use to move the turtle forward BK [length] – Backward/Move the turtle backward LT [degree] – Turn left RT [degree] – Turn right
Procedure & SUBROUTINE Procedure/Subroutine is a portion of code within a larger program that performs a specific task and is relatively independent of the remaining code. In MSW Logo, procedure is the steps for the turtle to do something. Example: Now, you can just simply type ‘square’ and it will automatically make a square
The length will be the user’s input Variables Variables are data which can change. For example: Variables can be used to define the length of the square. Declare the variable The length will be the user’s input e.g. square 100
Example: T Circle Code repeat 8 [fd 50 lt 90 fd 20 rt 90 fd 20 rt 90 fd 60 rt 90 fd 20 rt 90 fd 20 lt 90 fd 50 rt 90 fd 20 lt 10]