init project

This commit is contained in:
ldj_willow
2022-04-20 11:21:00 +08:00
parent ed5dad1836
commit c9028a4981
585 changed files with 60654 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package org.nl;
public class Cat implements IShout {
@Override
public void shout() {
System.out.println("miao miao111");
}
}