
public class PrintVisitor implements Visitor {

	@Override
	public void visit(Visitable o) {
		System.out.println(o.toString());
	}

}
