Published
turtle.penUp();
turtle.turn(-90);
turtle.move(190);
turtle.turn(180);
turtle.penDown();
function f(d){
if(d < 10){
turtle.move(d);
return;
}
d /= 3;
f(d);
turtle.turn(-60);
f(d);
turtle.turn(120);
f(d);
turtle.turn(-60);
f(d);
}
f(370);