okay we try again.
i have made a little program in 3 lines
i call it "bonci crazy".
in the program you will be asked to write a word and then the program will bounce it around on the screen and then the text will go out of the screen.
here is the code :
text 0,15, "credits : The Nerd" : input "write a word : ", word$ : set text size 72 : width = text width(word$) : height = text height(word$) : currentx = 320 - width / 2 : currenty = 240 - height / 2 : speedx = 2 : speedy = -2
sync on : do : cls : currentx = currentx + speedx : if currentx + width > 635 then speedx = -4 : if currentx < 5 then speedx = 4
text currentx, currenty, word$ : sync : loop : end
i hope you enjoy it
The Nerd