Пример #1
0
 public static void main(String[] args) {
   // TODO Auto-generated method stub
   LList test;
   test = new LList();
   test.append("vikas");
   test.append(1);
   test.append(100);
   test.print();
   System.out.println(test);
 }