/**
 * Item - general type for objects in tree.
 *   (actual objects will be either Atoms or ILists
 * @author dlevine
 *
 */
		
public interface Item {
	public void print();

}
