main
1namespace jive
2{
3  public interface Visitor<in T>
4  {
5    void visit(T item_to_visit);
6  }
7}