Published

graphic
// draw triangle.
for (var i=1; i<=3; i++) {
    turtle.move(100);
    turtle.turn(120);
}