hi
i have made a little program so when you type you name or anything else the program will spell it backwards
NOTE: i have only tested this in db classic
here is the code:
remstart
this program is made by The Nerd
remend
start:
cls
print "NOTE: the program can only handle up to 23 letters"
input "write you name or a thing YOU decice:-) : ", name$
print mid$(name$, 23)
print mid$(name$, 22)
print mid$(name$, 21)
print mid$(name$, 20)
print mid$(name$, 19)
print mid$(name$, 18)
print mid$(name$, 17)
print mid$(name$, 16)
print mid$(name$, 15)
print mid$(name$, 14)
print mid$(name$, 13)
print mid$(name$, 12)
print mid$(name$, 11)
print mid$(name$, 10)
print mid$(name$, 9)
print mid$(name$, 8)
print mid$(name$, 7)
print mid$(name$, 6)
print mid$(name$, 5)
print mid$(name$, 4)
print mid$(name$, 3)
print mid$(name$, 2)
print mid$(name$, 1)
print "press r to restart"
print "press w to quit"
restart:
if inkey$() = "r" then goto start
if inkey$() = "w" then goto close
goto restart
close:
end
please come whit comment
The Nerd
i make games, i play games... But the fun thing is that i like to make them more than play them....