TwoLessonsFinished

This commit is contained in:
2024-09-13 20:25:24 +02:00
parent 10b83fea74
commit 063ecdfcdd
6 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,7 @@
package com.example;
public class Animal {
void bark(){
System.out.println("Woof-Woof");
}
}

View File

@ -0,0 +1,7 @@
package com.example;
public class Loading {
void LoadingMessage(){
System.out.println("Loading");
}
}

View File

@ -3,5 +3,8 @@ package com.example;
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
Loading load = new Loading();
load.LoadingMessage();
}
}