Пример #1
0
        static void Main(string[] args)
        {
            myList l1 = new myList();

            l1.append(3);
            l1.append(1);
            l1.append(4);

            myList l2 = new myList();

            l2.append(7);
            l2.append(0);
            l2.append(9);
            l2.append(1);
            l2.append(1);
            l2.append(1);

            myList l3 = addListBasedIntegers(l1, l2);

            l3.print();
        }