Skip to content

Commit

Permalink
One more test
Browse files Browse the repository at this point in the history
  • Loading branch information
guw committed Feb 11, 2024
1 parent 0752db4 commit 7e175dc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions ecj-test/src/TestJep280.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
public class TestJep280 {
public static void main(String[] args) {
String result = "Hello ";
for (String arg : args) {
result += arg + ", ";
}
System.out.println(result);
}
}

0 comments on commit 7e175dc

Please sign in to comment.