mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
11 lines
160 B
Java
11 lines
160 B
Java
interface Nat {
|
|
interface Nil extends Nat {}
|
|
}
|
|
|
|
interface Inc extends Nat {
|
|
Nat dec();
|
|
|
|
static Inc make(Nat dec) {
|
|
return () -> dec;
|
|
}
|
|
} |