console.writeline ("Please enter the word you wish to be tested. It must have equal to or more than 3 characters.")
word = console.readline()
console.writeline ("This is not a Palindrome.")
dim wordchars(num - 1) as string
dim indicator as integer = 0
wordchars(i) = word.toupper.Substring(i,1)
wordchars(num - 1 - i) = word.toupper.Substring(num - 1 - i,1)
if wordchars(i) = wordchars (num - 1 - i)
loop until i = math.floor(num / 2)
console.writeline ("This is a Palindrome.")
console.writeline ("This is not a Palindrome.")