package v1.name.panitz.wip.tree;
public interface Visitor<R>  {
  R visit(IntLit il) throws Exception;
}

