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");
}
}