class TableTest {

	public static void main(String[] args) {
		TryTable table = new TryTable(2);

		table.tryStore("lcp", "Larry");
		table.tryStore("pr", "Peter");
		table.tryStore("acn", "Arthur");
		table.tryRetrieve("pr");
		table.tryRetrieve("jcw");
		table.tryStore("jwc", "Jenni");
		table.tryStore("lcp", "Lawrence");
		table.tryRetrieve("jwc");
	}
}
