http://rocky.wellesley.edu/cs230/code/hw04/Test.java
Write a recursive method named isPalindrome that takes a String and that returns a boolean indicating whether the word is a palindrome or not. Print all the palindromes in the dictionary.
It would be an excellent idea to write helper methods called first (which returns the first letter of a String), last (which returns the last letter of a String), and middle (which uses subString and returns all but the first and last characters, or an empty string if there are none).