
public interface StringList {
	
	public void add(String str);  // add to the end
	public String get(int i); // get element i in the list
	public int size(); // find the size of the list
	public void remove(int i); // remove index i
	public String show();
	public void reverse();

}

