turtle-graphicslogo-lang

How do I move the turtle in LOGO?


How do I move the turtle in LOGO?


Solution

  • // MOVE FORWARD
    FD 75
    // TURN RIGHT
    RT 54
    // TURN LEFT
    LT 21
    // MOVE BACKWARD
    BK 17
    

    Check out some other turtle commands found here...


    Turtle Commands


    Samples taken directly from website: http://gaza.freehosting.net/logo/index.html