spencerchako 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

hello_goodbye_real by spencerchako

Shoes.app :width => 300, :height => 200 do
  button "Push me, I dare you" do
    alert "You're in for it"
    name = ask "What's your name, huh?"
    alert "You're dead meat, " + name
    answer = ask "Don't believe me?"
      if answer == "No, I do."
        alert "Alright, buddy.  Don't mess around with me."
      else 
        alert "Okay, I'll show you."      
        button "Push here, then." do
          alert "Here it comes...!!!"
          99.times do
            alert "LOL!"           
          1.times do
            alert "That oughta teach you!"
          end
          end
        end
      end
   end  
 end