Skip to content

Commit 7e175dc

Browse files
committed
One more test
1 parent 0752db4 commit 7e175dc

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

ecj-test/src/TestJep280.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
public class TestJep280 {
2+
public static void main(String[] args) {
3+
String result = "Hello ";
4+
for (String arg : args) {
5+
result += arg + ", ";
6+
}
7+
System.out.println(result);
8+
}
9+
}

0 commit comments

Comments
 (0)