dash1224 and many others are using Hackety Hack to learn how to code.

Hackety Hack is a free program for Windows, Mac OS X and Linux that can teach you how to make games, applications and more and share those programs with your friends. You can ask other budding programmers questions and follow them to see what code they're working on through the Hackety Hack website.

Sign up Learn More

polygon by dash1224

#this program will try and create a polygon of the user's choosing

poly = " "
poly = ask  "How many sides do you want your shape to have?"
poly = 1 - 1 + poly.to_i # Not exactly elegant, but it was the only way it would turn into a fucking int

Turtle.draw do
  pencolor black
    poly.times do
    forward 25
    turnright 360 / poly
    end
end