hi
i see that the 20 line challenge is close to bee down so i thinked "maybe if i added a fun little program people will maybe start post there programs again" so i wanna give it a try also cus i like the 20 line challenge and i would be sad to see it dead
so here is a little fun program i have made.
The rules are simple:
there will be 5 words on the screen and you have to choose one of them.
then when you have chossed a word then type it in and see if its the right one
here is the code snippet:
set display mode 800,600,16
print "word guessing program"
print
print
print "by : Kasper"
print
print " ______________"
print "|**************|"
print "|press any key |"
print "|______________|"
wait key : cls
print "here is the words : hi , computer , programming, games , cheese "
input "type in here > ", guess$
gh$ = "games" : if guess$ = "games" : print "YAY YOU WON!" : sleep 1000 : end : else : print "wrong word" : sleep 1000 : end : endif
Enjoy
i would be glad if you guys wanna give me some comments
The Nerd