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.
1 parent 0752db4 commit 7e175dcCopy full SHA for 7e175dc
ecj-test/src/TestJep280.java
@@ -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