Thicket
Log in to post a comment.
// You can find the Turtle API reference here: https://turtletoy.net/syntax
Canvas.setpenopacity(1);
// Global code will be evaluated once.
const turtle = new Turtle();
turtle.penup();
turtle.goto(10, 0);
turtle.pendown();
function walk(i) {
turtle.forward( i/40);
turtle.right(i+0.1);
turtle.forward(i*0.01 );
turtle.left(i*i);
return i < 1000000;
}