/**
   WordTest
   @author John Doe Period 3
*/

import java.util.Scanner;

public class WordTest 
{
	public static void main(String[] args)
	{
		Scanner keyboard = new Scanner(System.in);   // obtains user input             
		
		System.out.print("Enter a word: ");
		String userInput = keyboard.next();				// user's inputed word
		
		Word word1 = new Word(userInput);            // user input
		
		System.out.print("Enter a letter to find: ");
		String letter = keyboard.next();             // letter to find
		
		Word word1 = new Word(userInput);            // user input
		
		System.out.println("You entered the word: " + word1.getWord());
		System.out.println("The first letter of your word is: " + word1.getFirstLetter());
		
		// more code here
	}
}

