Vorlesung 3 / Aufgabe 1

This commit is contained in:
Sebastian Brosch 2024-05-09 15:16:52 +02:00
parent 3e064693bf
commit dc781ca0bd
2 changed files with 12 additions and 5 deletions

View File

@ -1,5 +0,0 @@
class Aufgabe {
public static void main(String[] args) {
System.out.println("Hallo Welt");
}
}

View File

@ -0,0 +1,12 @@
package VL03.Aufgabe01;
/**
* Vorlesung 3 / Aufgabe 1
*
* @author Sebastian Brosch
*/
public class Aufgabe01 {
public static void main(String[] args) {
System.out.println("Hallo Welt");
}
}