Put testsuite in its own directory

This commit is contained in:
ktkk 2026-07-06 11:28:58 +00:00
parent 0cf25ebaf4
commit 114b9b099c
16 changed files with 107 additions and 0 deletions

View file

@ -0,0 +1,10 @@
public interface Interface {
String getName();
default void sayHello() {
System.out.println("Hello " + getName());
}
}