Published

graphic
// test -  goto start position
turtle.penUp();
turtle.turn(-90);
turtle.move(50);
turtle.turn(-90);
turtle.move(50);
turtle.turn(180);
turtle.penDown();

// draw!
turtle.turn(-18);
for(var i=0; i<=5; i++){
	turtle.move(100);
	turtle.turn(72);
}