public class Main {
  public static void main(String[] args) {
    Seq seq = new Cons("hello", new Cons("world", new Nil()));
  }
}
