Vika 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

vikas_simple_convo_proggie by Vika

name = ask " Hello there! What is thy name? :D "
alert " Nice to meet thee, " + name + " ! :) My name is Vika's Simple Conversation Program. "
mood = ask " So, how art thy today " + name + "?" 
alert " Only " + mood + " ? Everyday should be fantastic! Well, nevermind that... it should, but I myself had a " + mood + " day today. "
reason = ask " So, what is the reason behind thy having only a " + mood + " day? " 
alert reason + " ? Ah, I see... that is a problem, indeed. I am incredibly sorry for not being able to help thee. :(
Thy see, I am only a program that someone else has made... but I do wish thee luck to improve thy day! :) "
weather = ask " However, since I am a Conversation Program, the least I can do is talk to thee.
 So, what is the weather like at thy place? "
alert weather + " ? What a coincidence! It is " + weather + " here as well! Sirprisingly, where I am the weather does change. :) "
number = 15
guess = ask " Oh! I have an idea! Let's play a guessing game! I choose a number between 1 and 20, and thy guess what it is!
 Really simple, right? But here's the catch: thy only get one try! " + 
" Well then, let's test thy skills! "
if guess == number
  alert " Yes! Awesome! Thy guessed right! "
else 
  alert " Sorry, that was not the one! "
end 
ask " Thank you for playing with me, it was very enjoyable meeting thee! Please come by again! Thank you, goodbye! "