Initial commit

This commit is contained in:
2025-08-28 22:38:53 +02:00
commit f15208fe6d
232 changed files with 16821 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
package ch.gtache.fro;
/**
* Represents a bird
*/
@FunctionalInterface
public interface Bird {
/**
* Returns the name of the bird
*
* @return The name
*/
String name();
}