public class ListerDemo { public static void main(String[] args) { Node head; Node middle; Node tail; Lister print; tail = new Node("Harpo", null); middle = new Node("Chico", tail); head = new Node("Groucho", middle); print = new Lister(head); while (print.hasNext()) System.out.println(print.next()); } }