Skip to content

Commit

Permalink
bu task2
Browse files Browse the repository at this point in the history
  • Loading branch information
Javohir004 committed Apr 24, 2024
1 parent b5624d9 commit 8bf117e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Main.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

public class Main {
public static void main(String[] args) {

CustomLinkedList<Integer> test = new CustomLinkedList<>();
test.add(1);
test.add(2);
Expand All @@ -10,5 +11,6 @@ public static void main(String[] args) {
System.out.println(test.get(2));
test.remove(1);
System.out.println(test.get(1));

}
}

0 comments on commit 8bf117e

Please sign in to comment.