I <3 Infinity
I am always a big fan of infinite loops, this is one of the best ones that I have seen yet.
Visitor#visitGroup(Group g) {
g.accept(this);
}
Group#accept(Visitor v) {
v.visitGroup(this);
}







