This commit is contained in:
2022-02-07 17:26:04 +01:00
parent c7ec385a55
commit 759ba2dc5d
21 changed files with 253 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,5 @@
public class Arguments {
public static void main(String[] args) {
for (String name : args) System.out.println("Bonjour " + name);
}
}