Welcome to the Logo Emulator! đĸ Draw shapes and patterns by commanding a turtle with simple Logo instructions. Use the commands below to create your masterpieces!
Command | Description | Example |
---|---|---|
âŦī¸ fd |
Move forward | fd 100 |
âŦī¸ bk |
Move backward | bk 100 |
âĒī¸ rt |
Turn right | rt 90 |
âŠī¸ lt |
Turn left | lt 90 |
đī¸ pu |
Lift pen (stop drawing) | pu |
đī¸ pd |
Lower pen (start drawing) | pd |
đ home |
Return to center, face up | home |
đ¨ color |
Set line color (hex) | color #FF0000 |
đ repeat |
Repeat commands | repeat 4 [fd 100; rt 90] |
⨠Draw a Square: repeat 4 [fd 100; rt 90]
đ Draw a Colorful Spiral:
repeat 36 [fd 100; rt 59; color #FF0000; fd 50; rt 59; color #0000FF]