public class ToolsTest
{
	public static void main(String[] args)
	{
		int[] myList = {25, 50, 75, 100, 125, 150, 175, 200, 225, 250};
		Tools myTool = new Tools();

		System.out.println("Searching for 100.......\n");
		int result = myTool.linearSearch(myList, 100);

		if(result >= 0)
			System.out.println("Located value at position " + result);
		else
			System.out.println("Could not find value.");
	}
}