We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents acf0479 + 0b628bc commit 7857918Copy full SHA for 7857918
docs/testMessage
@@ -0,0 +1,18 @@
1
+Some kind of text
2
+GROUP 1 TO CATCH
3
+also multiline
4
+Lorem Ip'su`m
5
+
6
+```
7
+public class IntListTesterVer1 {
8
+ public static void main(String[] args){
9
+ IntListVer1 list1 = new IntListVer1();
10
+ IntListVer1 list2 = new IntListVer1(100);
11
12
+ //equal when empty?
13
+ System.out.println("list1.equals(list2): " + list1.equals(list2));
14
+ System.out.println("list1: " + list1);
15
+ System.out.println("list2: " + list2);
16
+ }
17
+}
18
0 commit comments