-- This Ada package specification adds palindrome checking
-- to the word package.

generic
package WordPkg.Palindromes is
    function is_Pal(w: Word) return Boolean;
end WordPkg.Palindromes;