Parse access flags

This commit is contained in:
ktkk 2026-06-19 11:35:45 +00:00
parent 1e6be5588a
commit 7d7df22df3
5 changed files with 147 additions and 14 deletions

10
Interface.java Normal file
View file

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