Starting git repo for working on files

This commit is contained in:
sulzlep
2024-07-13 12:44:25 +02:00
commit d45a2994e8
20 changed files with 185 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
public class HelloGoodbye
{
public static void main(String [] args){
String name1 = args[0];
String name2 = args[1];
System.out.println("Hello " + name2 + " and " + name1 + ".");
System.out.println("Goodbye " + name2 + " and " + name1 + ".");
}
}