Skip to content

Commit 7857918

Browse files
committed
Merge branch 'master' of https://github.com/dmg01/snippet-bot
2 parents acf0479 + 0b628bc commit 7857918

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

docs/testMessage

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)